:root {
  --bg: #f7f9f2;
  --surface: #ffffff;
  --surface-2: #eef7e8;
  --ink: #102018;
  --muted: #5f6f64;
  --line: #d8e8d2;
  --blue: #35796a;
  --blue-strong: #144737;
  --blue-deep: #0f2f24;
  --blue-soft: #edf8ef;
  --cyan: #5f9186;
  --green: #1f865c;
  --green-strong: #146244;
  --whatsapp: #1f9d5a;
  --whatsapp-strong: #147846;
  --brand-orange: #d99a3d;
  --brand-pink: #23845d;
  --brand-violet: #3f7b95;
  --brand-indigo: #174f3d;
  --brand-cream: #fff8eb;
  --navy: #10261d;
  --gold: #d6a653;
  --white: #ffffff;
  --brand-gradient: linear-gradient(135deg, #146244, #2d9062 56%, #d99a3d);
  --brand-gradient-soft: linear-gradient(135deg, rgba(35, 132, 93, 0.13), rgba(217, 154, 61, 0.12));
  --shadow: 0 18px 54px rgba(16, 49, 36, 0.1);
  --press-shadow: 0 8px 20px rgba(16, 49, 36, 0.14);
  --max: 1180px;
}

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

html {
  color-scheme: only light;
  background: var(--bg);
  scroll-behavior: smooth;
  scroll-padding-top: 98px;
  scrollbar-width: thin;
  scrollbar-color: rgba(31, 109, 82, 0.38) transparent;
}

body {
  margin: 0;
  min-height: 100dvh;
  overflow-x: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, #fffdf7 0%, #f7f9f2 46%, #eef8ef 100%);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

a,
button,
summary {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

.site-header {
  width: min(var(--max), calc(100vw - 32px));
  min-height: 66px;
  margin: 12px auto 0;
  padding: 10px 12px;
  position: sticky;
  top: 10px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(20, 71, 55, 0.11);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 40px rgba(16, 49, 36, 0.08);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.brand,
.site-nav,
.lang-switch,
.btn {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--navy);
  font-weight: 900;
  letter-spacing: 0.01em;
}

.brand img {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 9px;
  box-shadow: 0 8px 22px rgba(35, 132, 93, 0.16);
}

.brand span {
  color: var(--navy);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  border: 1px solid rgba(20, 71, 55, 0.09);
  border-radius: 12px;
  background: rgba(244, 250, 241, 0.82);
}

.site-nav a {
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 9px;
  color: #4f6256;
  font-size: 0.88rem;
  font-weight: 800;
  white-space: nowrap;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 18px rgba(16, 49, 36, 0.08);
  outline: none;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  flex: 0 0 auto;
  margin-left: auto;
  padding: 4px;
  border: 1px solid rgba(20, 71, 55, 0.11);
  border-radius: 12px;
  background: rgba(247, 251, 243, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.lang-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 32px;
  padding: 7px 9px;
  border-radius: 9px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.lang-switch a:hover,
.lang-switch a:focus-visible {
  color: var(--navy);
  background: var(--brand-gradient-soft);
  outline: none;
}

.lang-switch a.is-active {
  background: linear-gradient(135deg, var(--blue-strong), #2d9062);
  color: #fff;
  box-shadow: 0 7px 18px rgba(16, 49, 36, 0.14);
}

.btn:hover,
.btn:focus-visible {
  outline: 2px solid rgba(31, 109, 82, 0.28);
  outline-offset: 3px;
}

.site-nav a,
.lang-switch a,
.btn,
.feature-card,
.steps article,
.sales-flow article,
.faq-list details,
.species-card,
.conditions div,
.gallery-rail figure,
.whatsapp-float {
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease,
    color 160ms ease;
}

[data-reveal] {
  transition:
    opacity 520ms ease,
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease,
    color 160ms ease;
}

.js [data-reveal]:not(.is-visible) {
  opacity: 0;
  transform: translateY(14px);
}

.section {
  width: min(var(--max), calc(100vw - 32px));
  margin-inline: auto;
}

#urun,
#notlar,
#galeri,
#iletisim {
  scroll-margin-top: 106px;
}

.hero {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: min(650px, calc(100dvh - 90px));
  margin: -78px 0 0;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-bg,
.hero-bg img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  z-index: -2;
}

.hero-bg img {
  object-fit: cover;
  object-position: center 46%;
  filter: saturate(1.08) contrast(1.03) brightness(1.08);
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(9, 35, 25, 0.78), rgba(9, 35, 25, 0.52) 43%, rgba(9, 35, 25, 0.12) 72%),
    linear-gradient(180deg, rgba(9, 35, 25, 0.3), rgba(9, 35, 25, 0.2) 46%, rgba(9, 35, 25, 0.38));
}

.hero-inner {
  width: min(var(--max), calc(100vw - 32px));
  margin-inline: auto;
  padding: clamp(128px, 15vw, 178px) 0 clamp(54px, 7vw, 92px);
}

.hero-copy {
  max-width: 700px;
  min-width: 0;
  color: #fff;
}

.hero-copy h1 {
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand-pink);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1.35;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 700px;
  margin-bottom: 20px;
  font-size: clamp(2.28rem, 4.7vw, 4.55rem);
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 3.7vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.03rem;
  line-height: 1.2;
}

.hero-lead,
.section-heading p,
.section-lead,
.feature-card p,
.steps p,
.sales-flow p,
.faq-list p,
.contact-section p {
  color: var(--muted);
  line-height: 1.68;
}

.hero-copy .hero-lead {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.18);
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 26px;
  font-size: clamp(1rem, 1.3vw, 1.14rem);
  overflow-wrap: break-word;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  min-width: 0;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 0.94rem;
  font-weight: 850;
  line-height: 1.2;
}

.btn svg,
.whatsapp-icon,
.social-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.whatsapp-icon__mark,
.whatsapp-icon__phone {
  fill: currentColor;
}

.whatsapp-icon__phone {
  transform: translate(-0.45px, -0.55px);
}

.social-icon {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.btn-primary {
  background: var(--brand-gradient);
  color: #fff;
  box-shadow: 0 12px 28px rgba(20, 98, 68, 0.24);
}

.btn-whatsapp {
  background: var(--whatsapp);
  box-shadow: 0 12px 28px rgba(31, 157, 90, 0.24);
}

.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
  background: var(--whatsapp-strong);
}

.btn-instagram:hover,
.btn-instagram:focus-visible {
  border-color: rgba(31, 109, 82, 0.32);
  background: #fff;
}

.btn:active,
.site-nav a:active,
.lang-switch a:active,
.whatsapp-float:active {
  transform: translateY(1px);
  box-shadow: var(--press-shadow);
}

.btn-secondary {
  border-color: rgba(31, 109, 82, 0.22);
  background: rgba(255, 255, 255, 0.76);
  color: var(--navy);
}

.hero-copy .btn-secondary {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.btn-ghost {
  border-color: rgba(183, 134, 62, 0.28);
  background: rgba(248, 241, 229, 0.68);
  color: var(--blue-strong);
}

.feature-card,
.steps article,
.sales-flow article,
.faq-list details,
.species-card {
  border: 1px solid rgba(16, 36, 29, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
}

.species-card picture,
.gallery-rail picture {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: #e8eee6;
}

.species-card img,
.gallery-rail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding-block: clamp(52px, 8vw, 104px);
}

.band-muted,
.band-dark {
  width: 100vw;
  max-width: none;
  padding-inline: max(16px, calc((100% - var(--max)) / 2));
}

.band-muted {
  background: linear-gradient(180deg, rgba(255, 248, 235, 0.78), rgba(237, 248, 239, 0.92));
}

.band-dark {
  background: linear-gradient(135deg, #123c2e, #267556 62%, #6d7948);
  color: #f7fbff;
}

.band-dark .eyebrow {
  color: var(--gold);
}

.band-dark p {
  color: rgba(247, 251, 255, 0.82);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 28px;
}

.section-heading.compact {
  max-width: 720px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.feature-card,
.steps article,
.sales-flow article {
  min-width: 0;
  padding: 18px;
}

.feature-card span,
.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  border-radius: 8px;
  background: var(--brand-gradient-soft);
  color: var(--brand-violet);
  font-weight: 900;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.species-card {
  min-width: 0;
  overflow: hidden;
  background: var(--surface);
}

.species-card picture {
  border-radius: 8px 8px 0 0;
  aspect-ratio: 4 / 5;
}

.species-card__body {
  padding: 20px;
}

.species-badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 9px;
  border-radius: 6px;
  background: var(--blue-soft);
  color: var(--blue-strong);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.species-card h3 {
  font-size: 1.34rem;
}

.species-card p {
  color: var(--muted);
  line-height: 1.58;
}

.species-latin {
  margin-bottom: 12px;
  color: var(--blue-strong);
}

.species-specs {
  display: grid;
  gap: 0;
  margin: 16px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.species-specs div {
  display: grid;
  gap: 4px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.species-specs dt {
  color: var(--blue-strong);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.species-specs dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.conditions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.conditions div {
  min-width: 0;
  padding: 18px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid rgba(16, 36, 29, 0.11);
}

.conditions span,
.conditions small {
  display: block;
  color: var(--muted);
}

.conditions strong {
  display: block;
  margin: 4px 0;
  font-size: 1.28rem;
}

.sales-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.sales-flow article {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.06);
}

.gallery-section {
  overflow: hidden;
}

.gallery-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 30%);
  gap: 14px;
  overflow-x: auto;
  padding: 2px 0 16px;
  scroll-snap-type: x proximity;
  overscroll-behavior-x: contain;
  touch-action: pan-y;
  scrollbar-width: thin;
  scrollbar-color: rgba(31, 109, 82, 0.38) transparent;
}

.gallery-rail figure {
  scroll-snap-align: start;
  margin: 0;
}

.gallery-rail picture {
  aspect-ratio: 4 / 5;
}

.gallery-rail figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px;
  font-weight: 850;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--brand-pink);
  font-weight: 900;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 18px 18px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.7fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: center;
  border-top: 1px solid rgba(31, 109, 82, 0.18);
}

.contact-actions {
  justify-content: flex-end;
}

.whatsapp-float {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 14px;
  background: rgba(31, 157, 90, 0.94);
  color: #fff;
  box-shadow: 0 10px 24px rgba(16, 36, 29, 0.22);
  opacity: 0.94;
}

.whatsapp-float .whatsapp-icon {
  width: 25px;
  height: 25px;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  background: var(--whatsapp);
  opacity: 1;
  outline: 2px solid rgba(31, 157, 90, 0.22);
  outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {

  .btn:hover,
  .feature-card:hover,
  .steps article:hover,
  .sales-flow article:hover,
  .species-card:hover,
  .faq-list details:hover,
  .conditions div:hover,
  .gallery-rail figure:hover {
    transform: translateY(-2px);
  }

  .feature-card:hover,
  .steps article:hover,
  .species-card:hover,
  .conditions div:hover,
  .faq-list details:hover {
    box-shadow: 0 14px 34px rgba(16, 36, 29, 0.12);
    border-color: rgba(31, 109, 82, 0.22);
  }
}

.site-footer {
  width: min(var(--max), calc(100vw - 32px));
  margin: 0 auto;
  padding: 24px 0 42px;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (prefers-reduced-motion: no-preference) {
  .site-header {
    animation: header-in 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .hero-bg img {
    animation: hero-image-in 900ms ease both;
    transform-origin: center;
  }

  .hero-copy {
    animation: hero-copy-in 640ms cubic-bezier(0.22, 1, 0.36, 1) 120ms both;
  }
}

@keyframes header-in {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-image-in {
  from {
    transform: scale(1.018);
  }

  to {
    transform: scale(1);
  }
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 136px;
  }

  .site-header {
    flex-wrap: wrap;
    top: 8px;
  }

  .site-nav {
    order: 4;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .lang-switch {
    margin-left: auto;
  }

  .faq-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: min(620px, calc(100svh - 126px));
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid,
  .steps,
  .conditions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 122px;
  }

  .site-header,
  .section,
  .site-footer {
    width: calc(100vw - 32px);
    max-width: var(--max);
  }

  .band-muted,
  .band-dark {
    width: 100vw;
    max-width: none;
    padding-inline: 16px;
  }

  .site-header {
    margin-top: 8px;
    padding: 10px;
    border-radius: 16px;
    gap: 10px;
  }

  .brand {
    flex: 1 1 auto;
    gap: 8px;
    font-size: 0.96rem;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .lang-switch a {
    min-width: 34px;
    padding-inline: 8px;
  }

  .site-nav {
    padding: 4px;
    min-width: 0;
    max-width: 100%;
  }

  .site-nav a {
    flex: 0 0 auto;
    padding-inline: 11px;
  }

  .hero {
    width: 100%;
    min-height: min(640px, calc(100svh - 108px));
    margin-top: 12px;
  }

  .hero-inner {
    padding: 46px 0 50px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(8, 34, 24, 0.8), rgba(8, 34, 24, 0.66) 54%, rgba(8, 34, 24, 0.36)),
      linear-gradient(90deg, rgba(8, 34, 24, 0.7), rgba(8, 34, 24, 0.28));
  }

  h1 {
    max-width: 100%;
    font-size: clamp(1.92rem, 8.4vw, 2.45rem);
    line-height: 1.03;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .feature-grid,
  .steps,
  .conditions,
  .sales-flow,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .gallery-rail {
    grid-auto-columns: minmax(246px, 82vw);
  }

  .whatsapp-float {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@media (display-mode: standalone) {
  .site-header {
    padding-top: max(14px, env(safe-area-inset-top));
  }

  .site-footer {
    padding-bottom: max(42px, env(safe-area-inset-bottom));
  }
}

@media print {

  .site-header,
  .whatsapp-float,
  .site-footer {
    display: none;
  }

  body {
    background: #fff;
  }

  .section,
  .hero {
    width: 100%;
    padding: 20px 0;
  }
}
