/* ==========================================================================
   POTSAN — Plastik Sanayi ve Dış Ticaret
   ========================================================================== */

:root {
  --green: #4a9d1f;
  --green-mid: #3d8518;
  --green-dark: #2d6410;
  --green-deep: #1c440a;
  --orange: #f2a218;
  --orange-dark: #d4870a;

  --ink: #16200f;
  --body: #4a5544;
  --paper: #ffffff;
  --mist: #f5f8f2;
  --mist-2: #eaf0e4;
  --line: #e2e8dc;

  --font-display: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;

  --shadow-sm: 0 1px 3px rgba(22, 32, 15, 0.06), 0 1px 2px rgba(22, 32, 15, 0.04);
  --shadow-md: 0 8px 24px rgba(22, 32, 15, 0.08);
  --shadow-lg: 0 20px 48px rgba(28, 68, 10, 0.14);

  --header-h: 88px;
  --radius: 16px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--paper);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

/* Display type runs light with open tracking — the weight stays in the
   photography, not the letterforms. */
h1, h2 { font-family: var(--font-display); color: var(--ink); line-height: 1.22; font-weight: 500; letter-spacing: 0.015em; }
h3, h4 { font-family: var(--font-display); color: var(--ink); line-height: 1.25; font-weight: 600; }

/* Page enters with a quiet fade instead of snapping in. */
body { animation: pageIn 0.55s ease both; }
@keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }

::selection { background: var(--orange); color: #fff; }

.container { width: min(1200px, 92vw); margin-inline: auto; }
.container-narrow { width: min(820px, 92vw); margin-inline: auto; }

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 2px 20px rgba(22, 32, 15, 0.06);
}

.header-inner {
  width: min(1200px, 92vw);
  margin-inline: auto;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img { height: 52px; width: auto; }

.nav-desktop { display: flex; align-items: center; gap: 4px; }
.nav-desktop a {
  position: relative;
  padding: 10px 16px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 4px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-desktop a:hover { color: var(--green-dark); }
.nav-desktop a:hover::after,
.nav-desktop a.active::after { transform: scaleX(1); }
.nav-desktop a.active { color: var(--green-dark); }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 999px;
  background: var(--green-dark);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}
.header-cta:hover {
  background: var(--green);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(45, 100, 16, 0.28);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.2s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-mobile {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 95;
  background: #fff;
  padding: 28px clamp(20px, 6vw, 40px) 40px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
.nav-mobile.open { opacity: 1; visibility: visible; transform: none; }

/* ---- Transparent header + full-screen menu (home) ---- */
/* A soft scrim keeps the white nav legible over busy photography. */
.site-header.overlay {
  background: linear-gradient(to bottom, rgba(8, 18, 4, 0.55), rgba(8, 18, 4, 0.18) 62%, rgba(8, 18, 4, 0));
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  border-bottom-color: transparent;
  transition: background 0.5s ease;
}
.site-header.overlay.on-light { background: linear-gradient(to bottom, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0)); }
.site-header.overlay .nav-desktop a { color: #fff; }
.site-header.overlay .nav-desktop a:hover { color: var(--orange); }
.site-header.overlay .header-cta {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
}
.site-header.overlay .header-cta:hover { background: #fff; color: var(--green-dark); border-color: #fff; }
.site-header.overlay.on-light .nav-desktop a { color: var(--ink); }
.site-header.overlay.on-light .nav-desktop a:hover { color: var(--green-dark); }
.site-header.overlay.on-light .header-cta { border-color: var(--green-dark); color: var(--green-dark); }
.site-header.overlay.on-light .header-cta:hover { background: var(--green-dark); color: #fff; }
.site-header.overlay .menu-toggle {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.14);
}
.site-header.overlay .menu-toggle span { background: #fff; }
.site-header.overlay.on-light .menu-toggle { border-color: var(--line); background: rgba(255, 255, 255, 0.75); }
.site-header.overlay.on-light .menu-toggle span { background: var(--ink); }
.site-header.overlay .brand img { filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.35)); }
.site-header.overlay.on-light .brand img { filter: none; }

.site-header.overlay.solid-past-hero {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 2px 20px rgba(22, 32, 15, 0.06);
}
.site-header.overlay.solid-past-hero .menu-toggle { border-color: var(--line); background: #fff; }
.site-header.overlay.solid-past-hero .menu-toggle span { background: var(--ink); }
.site-header.overlay.solid-past-hero .brand img { filter: none; }
.site-header.overlay.solid-past-hero .nav-desktop a { color: var(--ink); }
.site-header.overlay.solid-past-hero .nav-desktop a:hover { color: var(--green-dark); }
.site-header.overlay.solid-past-hero .header-cta { border-color: var(--green-dark); color: var(--green-dark); }
.site-header.overlay.solid-past-hero .header-cta:hover { background: var(--green-dark); color: #fff; }

/* ---- Products dropdown ---- */
.has-drop { position: relative; }
.has-drop > a::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 18px;
}
.drop {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 244px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}
.has-drop:hover .drop,
.has-drop:focus-within .drop {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.drop a {
  display: block;
  padding: 11px 14px;
  border-radius: 9px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink) !important;
  white-space: nowrap;
}
.drop a::after { display: none; }
.drop a:hover { background: var(--mist); color: var(--green-dark) !important; }

.nav-mobile.menu-full {
  inset: 0;
  display: grid;
  place-items: center;
  padding: calc(var(--header-h) + 20px) 6vw 40px;
  background: linear-gradient(155deg, var(--green-deep), var(--green-dark) 58%, var(--green-mid));
}
.nav-mobile.menu-full ul { width: 100%; max-width: 520px; text-align: center; }
.nav-mobile.menu-full li { border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
.nav-mobile.menu-full li:last-child { border-bottom: 0; }
.nav-mobile.menu-full a {
  padding: clamp(10px, 1.8vh, 18px) 4px;
  font-size: clamp(1.2rem, 3.2vh, 1.9rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.25s ease, letter-spacing 0.25s ease;
}
.nav-mobile.menu-full a:hover,
.nav-mobile.menu-full a.active { color: var(--orange); letter-spacing: 0.14em; }
.nav-mobile.menu-full .drawer-cta {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.nav-mobile.menu-full .btn.ghost { border-color: rgba(255, 255, 255, 0.6); color: #fff; }
.nav-mobile.menu-full .btn.ghost:hover { background: #fff; color: var(--green-dark); }
.nav-mobile ul { list-style: none; }
.nav-mobile li { border-bottom: 1px solid var(--line); }
.nav-mobile a {
  display: block;
  padding: 18px 4px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
}
.nav-mobile a.active { color: var(--green-dark); }
.nav-mobile .drawer-cta { margin-top: 28px; display: grid; gap: 12px; }

/* ==========================================================================
   Hero — full-bleed cinematic slider (home)
   ========================================================================== */

.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  display: grid;
  overflow: hidden;
  background: var(--ink);
}

.hero-slide {
  grid-area: 1 / 1;
  position: relative;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s;
  pointer-events: none;
}
.hero-slide.current { opacity: 1; visibility: visible; pointer-events: auto; }

.hero-slide .shot {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transform: scale(1.06);
}
.hero-slide.current .shot { animation: kenburns 9s ease-out forwards; }
@keyframes kenburns { from { transform: scale(1.06); } to { transform: scale(1); } }

/* Studio shots are on white: park them right of centre and keep the left
   column clear so the caption always sits on plain white. */
.hero-slide.product .shot {
  background-size: 64% auto;
  background-position: 82% 48%;
  background-color: #fff;
}
.hero-slide.product::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(96deg, #fff 0%, rgba(255, 255, 255, 0.96) 30%, rgba(255, 255, 255, 0) 60%);
}
.hero-slide.cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 26, 6, 0.88) 8%, rgba(12, 26, 6, 0.45) 42%, rgba(12, 26, 6, 0.15) 75%);
}

.hero-caption {
  position: relative;
  z-index: 2;
  width: min(1200px, 92vw);
  margin-inline: auto;
  padding-bottom: clamp(96px, 16vh, 168px);
}
.hero-caption .eyebrow {
  display: block;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange);
}
.hero-caption h1 {
  font-size: clamp(2.1rem, 5.4vw, 3.8rem);
  margin: 14px 0 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  max-width: 20ch;
}
.hero-caption p { font-size: clamp(1rem, 1.5vw, 1.12rem); max-width: 48ch; }
.hero-caption .actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.hero-slide.cover h1 { color: #fff; text-shadow: 0 2px 24px rgba(0, 0, 0, 0.3); }
.hero-slide.cover p { color: rgba(255, 255, 255, 0.86); }
.hero-slide.product h1 { color: var(--ink); }
.hero-slide.product p { color: var(--body); }
.hero-slide.product .eyebrow { color: var(--green-dark); }

.hero-slide.current .hero-caption > * { animation: riseIn 0.85s cubic-bezier(0.16, 1, 0.3, 1) backwards; }
.hero-slide.current .hero-caption > *:nth-child(1) { animation-delay: 0.1s; }
.hero-slide.current .hero-caption > *:nth-child(2) { animation-delay: 0.2s; }
.hero-slide.current .hero-caption > *:nth-child(3) { animation-delay: 0.3s; }
.hero-slide.current .hero-caption > *:nth-child(4) { animation-delay: 0.4s; }

@keyframes riseIn { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }

.hero-dots {
  position: absolute;
  z-index: 4;
  left: max(4vw, calc(50vw - 600px));
  bottom: clamp(40px, 7vh, 64px);
  display: flex;
  gap: 9px;
}
.hero-dots button {
  width: 34px;
  height: 3px;
  border: 0;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: background 0.25s ease, width 0.25s ease;
}
.hero-dots button.on { background: var(--orange); width: 52px; }
.hero.on-light .hero-dots button { background: rgba(22, 32, 15, 0.22); }
.hero.on-light .hero-dots button.on { background: var(--orange); }

.hero-arrows {
  position: absolute;
  z-index: 4;
  right: max(4vw, calc(50vw - 600px));
  bottom: clamp(32px, 6vh, 56px);
  display: flex;
  gap: 10px;
}
.hero-arrows button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(0, 0, 0, 0.14);
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.hero-arrows button:hover { background: var(--orange); border-color: var(--orange); }
.hero.on-light .hero-arrows button { border-color: rgba(22, 32, 15, 0.2); color: var(--ink); background: rgba(255, 255, 255, 0.6); }
.hero.on-light .hero-arrows button:hover { background: var(--orange); border-color: var(--orange); color: #fff; }

/* ==========================================================================
   Page hero (inner)
   ========================================================================== */

.page-hero {
  margin-top: var(--header-h);
  padding: clamp(48px, 8vh, 80px) 0 clamp(40px, 6vh, 64px);
  background:
    radial-gradient(900px 340px at 88% 0%, rgba(242, 162, 24, 0.16), transparent 62%),
    linear-gradient(140deg, var(--green-deep), var(--green-dark) 60%, var(--green-mid));
  color: #fff;
}
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4.4vw, 3rem); margin-top: 10px; }
.page-hero p { color: rgba(255, 255, 255, 0.82); max-width: 60ch; margin-top: 14px; }
.crumbs {
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.crumbs a { transition: color 0.2s ease; }
.crumbs a:hover { color: var(--orange); }

/* ==========================================================================
   Sections
   ========================================================================== */

.section { padding: clamp(56px, 9vh, 100px) 0; }
.section.tinted { background: var(--mist); }
.section.dark {
  background: linear-gradient(140deg, var(--green-deep), var(--green-dark));
  color: rgba(255, 255, 255, 0.85);
}
.section.dark h2, .section.dark h3 { color: #fff; }
.section.dark .kicker { color: var(--orange); }

.section-head { max-width: 660px; margin-bottom: clamp(32px, 5vh, 52px); }
.section-head.center { margin-inline: auto; text-align: center; }
.kicker {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
}
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-top: 12px; letter-spacing: -0.015em; }
.section-head p { margin-top: 14px; }

.prose p { margin-bottom: 1.15em; }
.prose p:last-child { margin-bottom: 0; }
.prose h3 { font-size: 1.2rem; margin: 1.8em 0 0.6em; color: var(--green-dark); }
.prose a { color: var(--green-dark); font-weight: 600; border-bottom: 1px solid rgba(45, 100, 16, 0.3); }

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  background: var(--orange);
  color: #fff;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}
.btn:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(212, 135, 10, 0.3);
}
.btn.ghost { background: transparent; border: 1.5px solid var(--green-dark); color: var(--green-dark); }
.btn.ghost:hover { background: var(--green-dark); color: #fff; box-shadow: 0 10px 24px rgba(45, 100, 16, 0.24); }
.btn.light { background: #fff; color: var(--green-dark); }
.btn.light:hover { background: var(--orange); color: #fff; }
.btn.ghost.on-dark { border-color: rgba(255, 255, 255, 0.7); color: #fff; }
.btn.ghost.on-dark:hover { background: #fff; color: var(--green-dark); }

/* ==========================================================================
   Cards / grids
   ========================================================================== */

.grid { display: grid; gap: 26px; }
.grid.cols-2 { grid-template-columns: repeat(auto-fit, minmax(440px, 1fr)); }
.grid.cols-3 { grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); }
.grid.cols-4 { grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }

.card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.3s ease;
}
.card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: transparent; }

.card .thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #fff;
  border-bottom: 1px solid var(--line);
  display: grid;
  place-items: center;
}
.card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.card .thumb img.fill { object-fit: cover; padding: 0; }
.card:hover .thumb img { transform: scale(1.06); }

.card .body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.card .tag {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange-dark);
}
.card h3 { font-size: 1.12rem; margin: 8px 0 8px; }
.card p { font-size: 0.93rem; flex: 1; }
.card .more {
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.card:hover .more { color: var(--orange-dark); }
.card .more svg { transition: transform 0.3s ease; }
.card:hover .more svg { transform: translateX(4px); }

/* Feature tiles (icon list) */
.tiles { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.tile {
  padding: 28px 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.tile:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.tile .ico {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: rgba(74, 157, 31, 0.12);
  color: var(--green-dark);
  margin-bottom: 16px;
}
.tile h3 { font-size: 1.04rem; margin-bottom: 8px; }
.tile p { font-size: 0.92rem; }

/* ==========================================================================
   Split
   ========================================================================== */

.split {
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: center;
}
.split .art {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  display: grid;
  place-items: center;
  padding: 28px;
}
.split .art img { max-height: 420px; object-fit: contain; }
.split .art.photo { padding: 0; }
.split .art.photo img { width: 100%; height: 100%; max-height: none; object-fit: cover; aspect-ratio: 4 / 3; }

/* ==========================================================================
   Showcase — large editorial image tiles (home)
   ========================================================================== */

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

.showcase-item {
  position: relative;
  display: block;
  min-height: min(62vh, 560px);
  overflow: hidden;
  background: var(--ink);
}
.showcase-item .pic {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}
.showcase-item .pic.contain {
  background-size: 74% auto;
  background-position: center 42%;
  background-repeat: no-repeat;
  background-color: #fff;
}
.showcase-item:hover .pic { transform: scale(1.05); }
.showcase-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 5, 0.86) 4%, rgba(10, 22, 5, 0.34) 40%, rgba(10, 22, 5, 0.06) 72%);
  transition: background 0.5s ease;
}
.showcase-item:hover::after { background: linear-gradient(to top, rgba(10, 22, 5, 0.9) 6%, rgba(10, 22, 5, 0.45) 46%, rgba(10, 22, 5, 0.12) 78%); }

/* Studio shots are on white — a dark scrim would grey them out, so these
   tiles keep the white backdrop and switch the label to dark type. */
.showcase-item.light { background: #fff; border-right: 1px solid var(--line); }
.showcase-item.light::after {
  background: linear-gradient(to top, #fff 16%, rgba(255, 255, 255, 0.85) 34%, rgba(255, 255, 255, 0) 56%);
}
.showcase-item.light:hover::after {
  background: linear-gradient(to top, #fff 20%, rgba(255, 255, 255, 0.9) 40%, rgba(255, 255, 255, 0) 62%);
}
.showcase-item.light .label h3 { color: var(--ink); }
.showcase-item.light .label p { color: var(--body); }
.showcase-item.light .label .go { color: var(--green-dark); }
.showcase-item.light:hover .label .go { color: var(--orange-dark); }
.showcase-item.light .label .idx { color: var(--orange-dark); }

.showcase-item .label {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: clamp(24px, 3.4vw, 40px);
  color: #fff;
}
.showcase-item .label .idx {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--orange);
}
.showcase-item .label h3 {
  color: #fff;
  font-size: clamp(1.2rem, 1.7vw, 1.5rem);
  margin: 10px 0 8px;
}
.showcase-item .label p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  max-width: 32ch;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.4s ease;
}
.showcase-item:hover .label p { max-height: 6em; opacity: 1; }
.showcase-item .label .go {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
}
.showcase-item:hover .label .go { color: var(--orange); }

/* ==========================================================================
   Statement — quiet centred editorial block
   ========================================================================== */

.statement { text-align: center; }
.statement .kicker { display: block; }
.statement h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.7rem);
  line-height: 1.24;
  letter-spacing: -0.02em;
  margin: 16px auto 20px;
  max-width: 22ch;
}
.statement p { max-width: 62ch; margin: 0 auto 14px; font-size: 1.03rem; }
.statement .actions { margin-top: 30px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   Stats
   ========================================================================== */

.stats { display: grid; gap: 28px; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); text-align: center; }
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.1rem);
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat .num span { color: var(--orange); }
.stat .lbl {
  margin-top: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--body);
}
.section.dark .stat .num { color: #fff; }
.section.dark .stat .lbl { color: rgba(255, 255, 255, 0.65); }

/* ==========================================================================
   Spec tables
   ========================================================================== */

.spec-block { margin-bottom: 44px; }
.spec-block h3 {
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green-dark);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--green);
  margin-bottom: 0;
}

.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 12px 12px;
  -webkit-overflow-scrolling: touch;
}
table.spec {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 0.9rem;
}
table.spec thead th {
  background: var(--mist);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  text-align: left;
  padding: 13px 16px;
  white-space: nowrap;
  border-bottom: 1px solid var(--line);
}
table.spec td { padding: 12px 16px; border-bottom: 1px solid var(--line); white-space: nowrap; }
table.spec tbody tr:last-child td { border-bottom: 0; }
table.spec tbody tr:hover { background: rgba(74, 157, 31, 0.05); }
table.spec td:first-child { font-weight: 600; color: var(--ink); font-family: var(--font-display); font-size: 0.85rem; }

/* ==========================================================================
   Contact
   ========================================================================== */

.contact-grid { display: grid; gap: clamp(32px, 5vw, 60px); grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); align-items: start; }

.contact-lines { list-style: none; display: grid; gap: 4px; }
.contact-lines li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.contact-lines li:last-child { border-bottom: 0; }
.contact-lines .ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(74, 157, 31, 0.1);
  color: var(--green-dark);
}
.contact-lines .k {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  display: block;
  margin-bottom: 2px;
}
.contact-lines .v { color: var(--ink); font-weight: 500; }
.contact-lines a.v:hover { color: var(--green-dark); }

form.contact {
  display: grid;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 36px);
  box-shadow: var(--shadow-sm);
}
form.contact .row { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
form.contact label { display: grid; gap: 7px; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); }
form.contact input, form.contact select, form.contact textarea {
  font: inherit;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--mist);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
form.contact input:focus, form.contact select:focus, form.contact textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(74, 157, 31, 0.14);
}
form.contact textarea { resize: vertical; min-height: 120px; }
form.contact .consent {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 0.86rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--body);
}
form.contact .consent input { width: 18px; height: 18px; flex: none; margin-top: 3px; padding: 0; }
.form-note { font-size: 0.9rem; min-height: 1.4em; }

.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ==========================================================================
   CTA band
   ========================================================================== */

.cta-band {
  position: relative;
  padding: clamp(56px, 9vh, 92px) 0;
  background: linear-gradient(140deg, var(--green-deep), var(--green-dark) 65%, var(--green-mid));
  color: #fff;
  overflow: hidden;
  text-align: center;
}
.cta-band::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -140px;
  top: -220px;
  border-radius: 50%;
  background: rgba(242, 162, 24, 0.14);
}
.cta-band .container { position: relative; }
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3.4vw, 2.3rem); }
.cta-band p { color: rgba(255, 255, 255, 0.8); max-width: 54ch; margin: 14px auto 28px; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer { background: var(--green-deep); color: rgba(255, 255, 255, 0.72); padding: clamp(48px, 7vh, 72px) 0 26px; font-size: 0.93rem; }
.site-footer .cols { display: grid; gap: 36px; grid-template-columns: 1.4fr 1fr 1.3fr; margin-bottom: 44px; }
.site-footer img { height: 48px; width: auto; }
.site-footer h4 {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.site-footer ul { list-style: none; display: grid; gap: 10px; }
.site-footer a { transition: color 0.2s ease; }
.site-footer a:hover { color: var(--orange); }
.site-footer .legal {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 22px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
}

/* ==========================================================================
   Photo band — full-width atmosphere break between sections
   ========================================================================== */

.photo-band {
  position: relative;
  height: clamp(280px, 44vh, 460px);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.photo-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 26, 6, 0.24);
}
.photo-band .band-note {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: clamp(24px, 5vh, 44px);
  text-align: center;
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}
@media (max-width: 960px) {
  /* iOS paints fixed backgrounds unreliably — scroll normally on touch. */
  .photo-band { background-attachment: scroll; height: 240px; }
}

/* ==========================================================================
   WhatsApp bubble
   ========================================================================== */

.wa-bubble {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.42);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.wa-bubble:hover { transform: translateY(-3px) scale(1.06); box-shadow: 0 14px 34px rgba(37, 211, 102, 0.5); }
.wa-bubble svg { width: 30px; height: 30px; }

/* ==========================================================================
   Lightbox
   ========================================================================== */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(10, 16, 7, 0.92);
  display: grid;
  place-items: center;
  padding: 4vmin;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
  cursor: zoom-out;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.lightbox .lb-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
}
.zoomable { cursor: zoom-in; }

/* ==========================================================================
   Reveal
   ========================================================================== */

.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1080px) {
  .nav-desktop a { padding: 10px 12px; font-size: 0.78rem; }
}

@media (max-width: 960px) {
  :root { --header-h: 76px; }
  .nav-desktop, .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .brand img { height: 44px; }

  .site-footer .cols { grid-template-columns: 1fr 1fr; }
  .showcase { grid-template-columns: 1fr; }
  .showcase-item { min-height: 340px; }
  /* No hover on touch — the description has to be visible by default. */
  .showcase-item .label p { max-height: 6em; opacity: 1; }
}

@media (max-width: 640px) {
  body { font-size: 15.5px; }
  .section { padding: 48px 0; }
  .grid { gap: 18px; }
  /* Category cards carry a paragraph of copy — one per row keeps them readable. */
  .grid.cols-2, .grid.cols-3 { grid-template-columns: 1fr; }
  /* The compact 4-up tiles are short enough to pair up. */
  .grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .grid.cols-4 .card .body { padding: 14px 14px 18px; }
  .grid.cols-4 .card h3 { font-size: 0.95rem; }
  .grid.cols-4 .card p { font-size: 0.84rem; }
  .card .body { padding: 18px 18px 22px; }
  .card .tag { font-size: 0.64rem; }

  .stats { grid-template-columns: 1fr 1fr; gap: 26px 16px; }
  .site-footer .cols { grid-template-columns: 1fr; gap: 30px; }
  .site-footer .legal { justify-content: flex-start; }
  .contact-lines li { grid-template-columns: 36px 1fr; gap: 12px; }
  .contact-lines .ico { width: 36px; height: 36px; border-radius: 10px; }
  .btn { padding: 13px 26px; font-size: 0.78rem; }

  .hero { min-height: 520px; }
  /* Narrow screens stack instead of splitting: product above, caption below. */
  .hero-slide.product .shot { background-position: center 26%; background-size: 94% auto; }
  .hero-slide.product::after {
    background: linear-gradient(to top, #fff 42%, rgba(255, 255, 255, 0.9) 54%, rgba(255, 255, 255, 0) 70%);
  }
  .hero-caption { padding-bottom: 108px; }
  .hero-caption h1 { max-width: 100%; }
  .hero-dots { left: 4vw; bottom: 34px; }
  .hero-arrows { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   Acilis perdesi — logo animasyonu
   Ilk ziyarette bir kez gorunur (oturum boyunca tekrarlamaz).
   JS calismazsa perde hic olusmaz; icerik dogrudan gelir.
   ========================================================================== */
.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, var(--green-deep) 0%, var(--green-dark) 60%, #37641c 100%);
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.splash.done { opacity: 0; visibility: hidden; }

.splash-mark { width: min(150px, 34vw); height: auto; overflow: visible; }

/* Saksi asagidan yukselir */
.splash-pot {
  transform-origin: 50% 100%;
  animation: potRise 0.62s cubic-bezier(0.34, 1.3, 0.64, 1) both;
}
/* Yapraklar sirayla acilir */
.splash-leaf {
  transform-origin: 50% 100%;
  animation: leafOpen 0.5s cubic-bezier(0.34, 1.4, 0.64, 1) both;
}
.splash-leaf.l1 { animation-delay: 0.42s; }
.splash-leaf.l2 { animation-delay: 0.56s; }

.splash-name {
  margin-top: 26px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.42em;
  text-indent: 0.42em;
  color: rgba(255, 255, 255, 0.9);
  animation: nameIn 0.6s ease 0.66s both;
}

/* Altta ince ilerleme cizgisi */
.splash-bar {
  position: absolute;
  left: 50%;
  bottom: 16%;
  width: 116px;
  height: 2px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.18);
  border-radius: 2px;
  overflow: hidden;
}
.splash-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--orange);
  transform-origin: left;
  animation: barFill 1.05s ease-out both;
}

@keyframes potRise {
  from { opacity: 0; transform: translateY(24px) scale(0.86); }
  to   { opacity: 1; transform: none; }
}
@keyframes leafOpen {
  from { opacity: 0; transform: scale(0.2) rotate(-12deg); }
  to   { opacity: 1; transform: none; }
}
@keyframes nameIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}
@keyframes barFill {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* Hareket azaltma tercihi: animasyon yok, perde aninda kapanir */
@media (prefers-reduced-motion: reduce) {
  .splash-pot, .splash-leaf, .splash-name { animation: none; opacity: 1; transform: none; }
  .splash-bar { display: none; }
  .splash { transition: none; }
}

/* ==========================================================================
   Teklif sepeti
   Olcu tablolarindaki satirlar secilir, tek mesajda gonderilir.
   Secim sayfalar arasi korunur (sessionStorage).
   ========================================================================== */
.pick-cell { width: 44px; text-align: center; padding-left: 6px !important; padding-right: 6px !important; }

.pick {
  width: 26px; height: 26px;
  display: inline-grid; place-items: center;
  border: 1.5px solid var(--line);
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px; line-height: 1;
  color: var(--green-dark);
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.12s ease;
}
.pick:hover { border-color: var(--green); background: #f2f8ed; }
.pick:active { transform: scale(0.9); }
.pick.on { background: var(--green-dark); border-color: var(--green-dark); color: #fff; }
table.spec tr.picked td { background: #f4faef; }

/* Yuzen sepet dugmesi — WhatsApp balonunun ustunde durur */
.cart-fab {
  position: fixed;
  right: 22px; bottom: 92px;
  z-index: 60;
  display: none;
  align-items: center; gap: 9px;
  padding: 12px 18px;
  border: 0; border-radius: 999px;
  background: var(--green-dark);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600; font-size: 0.74rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(28, 68, 10, 0.32);
  animation: fabIn 0.32s cubic-bezier(0.34, 1.4, 0.64, 1) both;
}
.cart-fab.show { display: inline-flex; }
.cart-fab .n {
  min-width: 22px; height: 22px; padding: 0 6px;
  display: grid; place-items: center;
  background: var(--orange); color: #23200c;
  border-radius: 999px; font-size: 0.76rem;
}
@keyframes fabIn { from { opacity: 0; transform: translateY(14px) scale(0.9); } to { opacity: 1; transform: none; } }

/* Sepet paneli */
.cart-panel {
  position: fixed; inset: 0; z-index: 200;
  display: none;
  background: rgba(12, 26, 6, 0.55);
  backdrop-filter: blur(3px);
}
.cart-panel.open { display: block; }
.cart-box {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: min(430px, 92vw);
  background: #fff;
  display: flex; flex-direction: column;
  box-shadow: -18px 0 50px rgba(0, 0, 0, 0.22);
  animation: cartIn 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes cartIn { from { transform: translateX(100%); } to { transform: none; } }

.cart-head {
  padding: 22px 24px 16px;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.cart-head h3 { font-size: 1.05rem; font-weight: 500; letter-spacing: 0.015em; margin: 0; }
.cart-head .x {
  border: 0; background: transparent; cursor: pointer;
  font-size: 22px; line-height: 1; color: var(--muted); padding: 4px 8px;
}
.cart-head .x:hover { color: var(--ink); }

.cart-list { flex: 1; overflow-y: auto; padding: 8px 0; margin: 0; list-style: none; }
.cart-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 13px 24px;
  border-bottom: 1px solid var(--line);
}
.cart-list .code {
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 0.82rem; letter-spacing: 0.04em;
  color: var(--green-dark); min-width: 74px;
}
.cart-list .det { flex: 1; font-size: 0.86rem; color: var(--muted); line-height: 1.5; }
.cart-list .rm {
  border: 0; background: transparent; cursor: pointer;
  color: #c0392b; font-size: 17px; line-height: 1; padding: 2px 4px;
}
.cart-empty { padding: 40px 24px; text-align: center; color: var(--muted); font-size: 0.9rem; }

.cart-foot { padding: 18px 24px 24px; border-top: 1px solid var(--line); background: #fafbf8; }
.cart-foot .row { display: flex; gap: 10px; flex-wrap: wrap; }
.cart-foot .btn { flex: 1; min-width: 150px; justify-content: center; text-align: center; }
.cart-foot .clear {
  margin-top: 12px; border: 0; background: transparent; cursor: pointer;
  color: var(--muted); font-size: 0.8rem; text-decoration: underline;
}

@media (max-width: 640px) {
  .cart-fab { right: 16px; bottom: 84px; padding: 11px 15px; font-size: 0.68rem; }
}
