/* ========================================================================
   UFUK SÜT — "Yeşil Vadi" Tema Dosyası
   ======================================================================== */

:root {
  --green-deep:       #2E7D4F;
  --green-grass:      #7CB342;
  --green-dark:       #1B5E3A;
  --blue-sky:         #3E86B8;
  --brown-earth:      #8B5E3C;
  --cream-bg:         #FAF7F0;
  --white-pure:       #FFFFFF;
  --border-light:     #E5E2D8;
  --text-dark:        #2B2B28;
  --text-soft:        #6B6B66;
  --text-light:       #F5F0EC;
  --success:          #3B8F5C;
  --warning:          #D9A441;
  --error:            #C1443C;
  --info:             #4A9FD8;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-card: 0 2px 16px rgba(46,125,79,.08);
  --shadow-card-hover: 0 8px 32px rgba(46,125,79,.14);
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --navbar-height: 200px;
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background: var(--cream-bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  padding-top: 0;
}

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

/* -------- TİPOGRAFİ -------- */
h1, h2, h3, h4, .h1, .h2, .h3, .h4 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: -.02em;
  line-height: 1.2;
}

.display-hero { font-size: clamp(2rem, 4.5vw, 3.5rem); }
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 0.5rem;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-soft);
  max-width: 580px;
}

p { line-height: 1.7; color: var(--text-soft); }

/* -------- BOOTSTRAP OVERRIDES -------- */
.btn {
  padding: .6rem 1.5rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.btn-primary {
  --bs-btn-bg: var(--green-deep);
  --bs-btn-border-color: var(--green-deep);
  --bs-btn-color: #fff;
  --bs-btn-hover-bg: #1B5E3A;
  --bs-btn-hover-border-color: #1B5E3A;
  --bs-btn-active-bg: #1B5E3A;
}
.btn-outline-light {
  --bs-btn-color: #fff;
  --bs-btn-border-color: rgba(255,255,255,.6);
  --bs-btn-hover-bg: rgba(255,255,255,.1);
  --bs-btn-hover-border-color: #fff;
  --bs-btn-hover-color: #fff;
}
.btn-lg { padding: .75rem 2rem; font-size: 1rem; }

.form-control, .form-select { border-radius: var(--radius-sm); }
.form-control:focus {
  border-color: var(--green-grass);
  box-shadow: 0 0 0 .2rem rgba(46,125,79,.2);
}
a { color: var(--green-deep); transition: color var(--transition); }
a:hover { color: var(--green-grass); }

/* ===================== HEADER ===================== */

/* -------- MAIN NAV (transparent → green on scroll) -------- */
.main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--navbar-height);
  z-index: 1030;
  display: flex;
  align-items: center;
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
  background: transparent;
  border-bottom: 1px solid transparent;
}
.main-nav.scrolled {
  height: 140px;
  background: var(--green-deep);
  border-bottom-color: rgba(255,255,255,.08);
  box-shadow: 0 2px 24px rgba(0,0,0,.12);
}
.main-nav .nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* --- Left menu (right-aligned toward logo) --- */
.main-nav .nav-left {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: flex-end;
}

/* --- Right menu (left-aligned toward logo) --- */
.main-nav .nav-right {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: flex-start;
}

/* --- Center logo --- */
.main-nav .nav-center {
  flex-shrink: 0;
  padding: 0 2rem;
}
.main-nav .nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}
.main-nav .nav-logo-img {
  display: block;
  height: 90px;
  width: auto;
  transition: height .35s ease;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.15));
}
.main-nav.scrolled .nav-logo-img {
  height: 70px;
  filter: none;
}

/* --- Nav links (uppercase) --- */
.main-nav .nav-link {
  color: rgba(255,255,255,.9) !important;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: .5rem 1rem !important;
  border-radius: 0;
  transition: color .2s, background .2s;
  position: relative;
  text-decoration: none;
  text-shadow: 0 1px 4px rgba(0,0,0,.2);
}
.main-nav.scrolled .nav-link { text-shadow: none; }
.main-nav .nav-link:hover {
  color: #fff !important;
  background: rgba(255,255,255,.08);
}
.main-nav .nav-link.active {
  color: #fff !important;
}
.main-nav .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--green-grass);
  border-radius: 1px;
}

/* --- Phone button (pill shaped CTA) --- */
.main-nav .nav-phone-btn {
  background: var(--green-grass);
  color: #fff !important;
  padding: .5rem 1.2rem !important;
  border-radius: 30px;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .3px;
  display: flex;
  align-items: center;
  gap: .45rem;
  transition: all .25s;
  margin-left: .75rem;
  text-decoration: none;
}
.main-nav .nav-phone-btn:hover {
  background: #6DA832 !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(124,179,66,.35);
}
.main-nav.scrolled .nav-phone-btn {
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.2);
}
.main-nav.scrolled .nav-phone-btn:hover {
  background: var(--green-dark) !important;
  border-color: transparent;
}

/* --- Mobile hamburger --- */
.main-nav .navbar-toggler {
  border: 1px solid rgba(255,255,255,.35);
  padding: .45rem .65rem;
  font-size: 1.1rem;
  color: #fff;
  background: none;
  border-radius: 6px;
  cursor: pointer;
  margin-left: .75rem;
}

/* ===================== HERO CAROUSEL ===================== */
.hero-carousel {
  position: relative;
}
.hero-carousel .carousel,
.hero-carousel .carousel-inner {
  height: 100vh;
}
.hero-carousel .carousel-item {
  height: 100vh;
  max-height: 100vh;
  position: relative;
  overflow: hidden;
}

/* Dark gradient overlay: dark at bottom for readability */
.hero-carousel .carousel-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(0,0,0,.15) 0%,
    rgba(0,0,0,.25) 40%,
    rgba(0,0,0,.55) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Caption: left aligned, vertically centered */
.hero-carousel .carousel-caption {
  position: absolute;
  left: 6%;
  right: auto;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  text-align: left;
  padding: 0;
  max-width: 580px;
  z-index: 2;
}
.hero-carousel .carousel-caption h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.15;
  text-shadow: 2px 2px 8px rgba(0,0,0,.6);
}
.hero-carousel .carousel-caption p {
  color: #fff;
  font-size: 1.1rem;
  max-width: 500px;
  margin-bottom: 1.75rem;
  text-shadow: 1px 1px 6px rgba(0,0,0,.55);
}

/* Hero CTA buttons - pill shaped */
.btn-hero-cta {
  display: inline-block;
  background: var(--cream-bg);
  color: var(--green-deep);
  border-radius: 50px;
  padding: .8rem 2.2rem;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  transition: all .3s ease;
  text-decoration: none;
}
.btn-hero-cta:hover {
  background: #fff;
  color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.2);
}
.btn-hero-outline {
  display: inline-block;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 50px;
  padding: .8rem 2.2rem;
  font-weight: 600;
  font-size: 1rem;
  transition: all .3s ease;
  text-decoration: none;
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

/* Arrow controls */
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  width: 48px;
  height: 48px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(0,0,0,.25);
  opacity: 1;
  transition: all .3s ease;
}
.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover {
  background: rgba(255,255,255,.3);
}
.hero-carousel .carousel-control-prev { left: 40px; }
.hero-carousel .carousel-control-next { right: 40px; }

/* Dot indicators */
.hero-carousel .carousel-indicators {
  bottom: 30px;
  z-index: 3;
}
.hero-carousel .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  margin: 0 6px;
  opacity: .7;
}
.hero-carousel .carousel-indicators button.active {
  background: #fff;
  opacity: 1;
}

/* Wave divider */
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  z-index: 2;
  line-height: 0;
}

/* -------- SEKTÖRLER / GENEL -------- */
.section-padding { padding: 80px 0; }
.section-alt { background: var(--white-pure); }
.section-dark {
  background: #1E3A2A;
  color: var(--text-light);
}
.section-dark .section-title { color: #fff; }
.section-dark .section-subtitle { color: rgba(255,255,255,.7); }

/* -------- ÜRÜN KARTLARI -------- */
.product-card {
  background: var(--white-pure);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 100%;
  transition: all var(--transition);
  position: relative;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--green-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
  z-index: 2;
}
.product-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}
.product-card:hover::before { transform: scaleX(1); }
.product-card .card-img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  background: #fff;
  padding: 1.25rem;
  display: block;
}
.product-card .card-body {
  padding: 0 1.5rem 1.5rem;
  text-align: center;
}
.product-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: .35rem;
}
.product-card p { font-size: .85rem; color: var(--text-soft); margin-bottom: .5rem; }

/* -------- DEĞERLER -------- */
.value-item { display: flex; gap: 1.25rem; margin-bottom: 2rem; }
.value-item .icon-box {
  flex-shrink: 0;
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(46,125,79,.1);
  border-radius: var(--radius-sm);
  font-size: 1.3rem;
  color: var(--green-deep);
}
.value-item h4 { font-size: 1.1rem; font-weight: 600; margin-bottom: .25rem; }
.value-item p { font-size: .9rem; color: var(--text-soft); margin-bottom: 0; }

/* -------- İSTATİSTİK -------- */
.stat-item { text-align: center; padding: 1rem 0; }
.stat-item .number {
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  color: var(--green-grass);
  line-height: 1;
  margin-bottom: .25rem;
}
.stat-item .label { font-size: .875rem; color: var(--text-soft); }
.section-dark .stat-item .label { color: rgba(255,255,255,.7); }

/* -------- CTA BANNER -------- */
.cta-banner {
  background: linear-gradient(135deg, #2E7D4F, #1B5E3A);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  text-align: center;
}
.cta-banner h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2rem); }
.cta-banner p {
  color: rgba(255,255,255,.75);
  max-width: 500px; margin: .5rem auto 1.5rem;
}

/* -------- İÇ SAYFA BAŞLIĞI -------- */
.page-header {
  background: linear-gradient(135deg, #2E7D4F, #1B5E3A);
  padding: 60px 0;
  margin-bottom: 0;
  margin-top: 140px;
}
.page-header h1 { color: #fff; margin-bottom: .25rem; }
.page-header p { color: #fff; opacity: .9; }

/* -------- FOOTER -------- */
.site-footer {
  background: #1E3A2A;
  color: rgba(255,255,255,.8);
  padding: 56px 0 0;
  margin-top: 0;
  position: relative;
  overflow: visible;
}
.site-footer h5 {
  font-family: 'DM Serif Display', serif;
  color: #fff; font-size: 1rem;
  margin-bottom: 1.25rem; letter-spacing: .02em;
}
.site-footer a {
  color: rgba(255,255,255,.65);
  text-decoration: none;
  font-size: .875rem;
  transition: color var(--transition);
}
.site-footer a:hover { color: var(--green-grass); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: .5rem; }
.site-footer .social-links a {
  display: inline-flex;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  margin-right: .5rem;
  font-size: 1rem;
  transition: all var(--transition);
}
.site-footer .social-links a:hover {
  background: var(--green-grass);
  color: #1E3A2A;
}
.site-footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 0;
  margin-top: 40px;
  font-size: .825rem;
  color: rgba(255,255,255,.45);
}
.site-footer .footer-brand {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: #fff; margin-bottom: .3rem;
}

/* -------- FOOTER MASCOT -------- */
.footer-mascot {
  position: absolute;
  top: -70px;
  right: 8%;
  width: 150px;
  height: auto;
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 8px 12px rgba(0,0,0,.25));
}

@media (max-width: 768px) {
  .footer-mascot {
    width: 100px;
    top: -50px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .footer-mascot { display: none; }
}

/* ===================== ÜRÜN DETAY GÖRSEL ===================== */
.product-img-card {
  border: 1px solid #E5E2D8;
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  background: transparent;
}

.product-img-wrapper {
  padding: 24px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.product-img-placeholder {
  background: #FAF7F0;
  border: 2px dashed #E5E2D8;
  border-radius: 16px;
  padding: 48px 24px;
  text-align: center;
  width: 100%;
}

/* ===================== SERTİFİKA GRID ===================== */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 860px;
  margin: 2rem auto 0;
}
.cert-item:nth-child(4) { grid-column: 1 / 2; margin-left: auto; }
.cert-item:nth-child(5) { grid-column: 2 / 3; }

.cert-card {
  background: #ffffff;
  border: 1px solid #E5E2D8;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  transition: box-shadow .2s, transform .2s;
  cursor: pointer;
}
.cert-card:hover {
  box-shadow: 0 6px 20px rgba(46,125,79,.15);
  transform: translateY(-3px);
}
.cert-img-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cert-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.cert-label {
  margin-top: 10px;
  font-size: .85rem;
  font-weight: 600;
  color: #2E7D4F;
  letter-spacing: .5px;
}

@media (max-width: 768px) {
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .cert-item:nth-child(4),
  .cert-item:nth-child(5) { grid-column: auto; margin-left: 0; }
}
@media (max-width: 480px) {
  .cert-grid { grid-template-columns: 1fr; }
}

/* ===================== SCROLL TO TOP ===================== */
.scroll-to-top {
  position: fixed;
  bottom: 96px;   /* WhatsApp sabit butonunun üstüne */
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-deep);
  color: #fff;
  border: none;
  box-shadow: 0 4px 14px rgba(46,125,79,.35);
  cursor: pointer;
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all .3s ease;
}
.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-to-top:hover {
  background: #1B5E3A;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(46,125,79,.45);
}

/* -------- FOOTER CERTIFICATE HOVER -------- */
.site-footer .d-flex.flex-wrap.gap-2 img {
  transition: transform .3s ease;
  cursor: default;
}
.site-footer .d-flex.flex-wrap.gap-2 img:hover {
  transform: scale(3);
  z-index: 10;
  position: relative;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 991.98px) {
  .main-nav .nav-left,
  .main-nav .nav-right .nav-link,
  .main-nav .nav-right .nav-phone-btn {
    display: none;
  }

  /* Logo solda, hamburger sağda */
  .main-nav .nav-center { flex: 1; text-align: left; }
  .main-nav .nav-logo { justify-content: flex-start; }
  .main-nav .nav-right { flex: 0 0 auto; justify-content: flex-end; }
  .main-nav .nav-logo-img { height: 100px; }
  .main-nav.scrolled .nav-logo-img { height: 80px; }

  /* Hamburger butonu — beyaz ikon, görünür border */
  .main-nav .navbar-toggler {
    border: 1px solid rgba(255,255,255,.5);
    color: #fff;
    margin-left: 0;
    padding: .5rem .7rem;
  }
  .main-nav.scrolled .navbar-toggler {
    border-color: rgba(255,255,255,.4);
  }

  /* Açılan mobil menü paneli — navbar'ın altına hizalanır */
  .main-nav .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #2E7D4F;
    border-radius: 0 0 12px 12px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 8px 30px rgba(0,0,0,.2);
    padding: 12px 0 16px;
    max-height: calc(100vh - 100%);
    overflow-y: auto;
    z-index: 1031;
  }
  .main-nav .navbar-collapse .nav-link {
    padding: 10px 20px !important;
    border-bottom: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.9) !important;
    font-size: .95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    display: block;
  }
  .main-nav .navbar-collapse .nav-link:hover {
    color: #fff !important;
    background: rgba(255,255,255,.08);
  }
  .main-nav .navbar-collapse .nav-phone-btn {
    margin: 12px 16px 0;
    width: calc(100% - 32px);
    justify-content: center;
    white-space: nowrap;
    display: flex;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.2);
  }

  .hero-carousel .carousel-caption {
    left: 5%;
    right: 5%;
    max-width: 100%;
  }
  .hero-carousel .carousel-control-prev { left: 15px; }
  .hero-carousel .carousel-control-next { right: 15px; }
}

@media (max-width: 767.98px) {
  :root { --navbar-height: 120px; }
  .section-padding { padding: 48px 0; }
  .product-card { padding: 1.75rem 1.25rem; }
  .cta-banner { padding: 2rem 1.5rem; }
  .site-footer { padding: 40px 0 0; }
  .hero-wave { height: 50px; }
  .main-nav .nav-logo-img { height: 100px; }
  .main-nav.scrolled .nav-logo-img { height: 70px; }
  .hero-carousel .carousel-item,
  .hero-carousel .carousel,
  .hero-carousel .carousel-inner { height: 100vh; }
  .hero-carousel .carousel-caption { left: 1.25rem; right: 1.25rem; }
  .hero-carousel .carousel-caption h1 { font-size: clamp(1.6rem, 6vw, 2rem); }
  .btn-hero-cta, .btn-hero-outline { font-size: .85rem; padding: .6rem 1.5rem; }
  .hero-carousel .carousel-control-prev { left: 10px; }
  .hero-carousel .carousel-control-next { right: 10px; }
}

@media (min-width: 992px) {
  .main-nav .navbar-collapse { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0s !important; animation-duration: 0s !important; }
}

/* =============================================
   HIZLI SİPARİŞ FORMU
   ============================================= */

.quick-order-section {
  position: relative;
  z-index: 10;
  margin-top: -60px;      /* slide üzerine taşma */
  padding-bottom: 0;
}

.quick-order-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 32px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid #E5E2D8;
}

.quick-order-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.quick-order-header h5 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #2B2B28;
}

.quick-order-badge {
  font-size: .78rem;
  background: #f0faf4;
  color: #2E7D4F;
  border: 1px solid #c3e6cb;
  border-radius: 50px;
  padding: 2px 10px;
  margin-left: auto;
}

.quick-order-form {}

.quick-order-fields {
  display: grid;
  grid-template-columns: 2fr 2fr 1.5fr 3fr auto;
  gap: 12px;
  align-items: end;
}

.quick-field label {
  font-size: .8rem;
  font-weight: 600;
  color: #6B6B63;
  margin-bottom: 4px;
  display: block;
  text-transform: uppercase;
  letter-spacing: .4px;
}

.quick-field .form-control,
.quick-field .form-select {
  border-radius: 10px;
  border: 1.5px solid #E5E2D8;
  font-size: .9rem;
  padding: 9px 12px;
  transition: border-color .2s;
}

.quick-field .form-control:focus,
.quick-field .form-select:focus {
  border-color: #2E7D4F;
  box-shadow: 0 0 0 3px rgba(46,125,79,.12);
}

.quick-field-qty .qty-unit {
  display: flex;
  gap: 6px;
}

.quick-field-qty .qty-unit .form-control {
  flex: 1;
  min-width: 0;
}

.quick-field-qty .qty-unit .form-select {
  width: auto;
  flex: 0 0 auto;
  min-width: 74px;
}

.quick-order-btn {
  background: #25D366;    /* WhatsApp yeşili */
  color: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: .9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  transition: background .2s, transform .15s;
}

.quick-order-btn:hover {
  background: #1ebe5d;
  color: #fff;
  transform: translateY(-1px);
}

.quick-order-btn i {
  font-size: 1.1rem;
}

/* Mobil: tek kolon */
@media (max-width: 991px) {
  .quick-order-section {
    margin-top: -30px;
  }
  .quick-order-card {
    padding: 20px 16px;
  }
  .quick-order-fields {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .quick-order-btn {
    width: 100%;
    justify-content: center;
    grid-column: 1 / -1;
  }
}

@media (max-width: 576px) {
  .quick-order-section {
    margin-top: -20px;
  }
  .quick-order-fields {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   WHATSAPP SABİT BUTONU
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 16px rgba(37,211,102,.45);
  z-index: 9998;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,.6);
  color: #fff;
}

/* Ping animasyonu — dikkat çekmek için */
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(37,211,102,.3);
  animation: wa-ping 2s ease-out infinite;
}

@keyframes wa-ping {
  0%   { transform: scale(1); opacity: .6; }
  70%  { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(1.4); opacity: 0; }
}

@media (max-width: 576px) {
  .whatsapp-float {
    bottom: 16px;
    left: 16px;
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }
  .scroll-to-top {
    bottom: 80px;   /* WhatsApp butonunun üstüne */
    right: 16px;
  }
}

/* =============================================
   BENZER ÜRÜNLER BÖLÜMÜ
   ============================================= */
.related-products-section {
  padding: 48px 0 32px;
  border-top: 1px solid #E5E2D8;
  margin-top: 48px;
}

.related-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2B2B28;
  margin-bottom: 24px;
}

.product-card-link {
  text-decoration: none;
  display: block;
}

.product-card-img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #FAF7F0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-card-body {
  padding: 14px;
}

.product-card-cat {
  font-size: .75rem;
  font-weight: 600;
  color: #2E7D4F;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.product-card-name {
  font-size: .95rem;
  font-weight: 600;
  color: #2B2B28;
  margin: 4px 0 2px;
  line-height: 1.3;
}

/* =============================================
   REFERANSLAR BÖLÜMÜ
   ============================================= */
.references-section {
  padding: 64px 0;
  background: #f5f2eb;
}

.references-track-wrap {
  overflow: hidden;
  position: relative;
  /* Kenar soluklaştırma */
  mask-image: linear-gradient(to right,
    transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right,
    transparent 0%, black 8%, black 92%, transparent 100%);
}

.references-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: ref-scroll 28s linear infinite;
}

.references-track:hover {
  animation-play-state: paused;
}

@keyframes ref-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ref-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border: 1px solid #E5E2D8;
  border-radius: 14px;
  padding: 14px 20px;
  min-width: 180px;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  flex-shrink: 0;
}

.ref-icon {
  width: 40px;
  height: 40px;
  background: #f0faf4;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #2E7D4F;
  flex-shrink: 0;
}

.ref-info {
  display: flex;
  flex-direction: column;
}

.ref-name {
  font-size: .88rem;
  font-weight: 600;
  color: #2B2B28;
  line-height: 1.2;
}

.ref-type {
  font-size: .75rem;
  color: #6B6B63;
}

.references-note {
  font-size: .9rem;
  color: #6B6B63;
}

/* =============================================
   KARİYER + BAYİ SAYFALARI
   ============================================= */
.career-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f0faf4;
  border: 1px solid #c3e6cb;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: .88rem;
  font-weight: 500;
  color: #2B2B28;
}

.career-form-card {
  background: #ffffff;
  border: 1px solid #E5E2D8;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
}

.dealer-feature {
  background: #f0faf4;
  border: 1px solid #c3e6cb;
  border-radius: 14px;
  padding: 20px 12px;
  font-size: .82rem;
  font-weight: 500;
  color: #2B2B28;
  height: 100%;
}

/* =============================================
   BLOG
   ============================================= */
.blog-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.blog-filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  border: 1.5px solid #E5E2D8;
  font-size: .88rem;
  font-weight: 500;
  color: #2B2B28;
  text-decoration: none;
  transition: all .2s;
}

.blog-filter-btn:hover,
.blog-filter-btn.active {
  background: #2E7D4F;
  border-color: #2E7D4F;
  color: #fff;
}

.blog-card-link { text-decoration: none; display: block; }

.blog-card {
  background: #fff;
  border: 1px solid #E5E2D8;
  border-radius: 16px;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(46,125,79,.12);
}

.blog-card-img {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #FAF7F0;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-no-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #E5E2D8;
}

.blog-card-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.cat-blog  { background: #3E86B8; color: #fff; }
.cat-tarif { background: #D9A441; color: #fff; }

.blog-card-body { padding: 16px; }

.blog-card-title {
  font-size: .95rem;
  font-weight: 700;
  color: #2B2B28;
  margin-bottom: 6px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-excerpt {
  font-size: .82rem;
  color: #6B6B63;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-meta {
  display: flex;
  justify-content: space-between;
  font-size: .75rem;
  color: #9B9B8E;
}

.blog-content {
  font-size: 1.02rem;
  line-height: 1.8;
  color: #2B2B28;
}
.blog-content h2, .blog-content h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  margin: 1.5rem 0 .75rem;
}
.blog-content p { margin-bottom: 1rem; }
.blog-content img { max-width: 100%; border-radius: 8px; }

/* =============================================
   BLOG VIDEO OYNATICI
   ============================================= */
.blog-video-wrapper {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 9;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
}

.blog-video-wrapper iframe,
.blog-video-wrapper video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.blog-video-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,.65);
  color: #fff;
  font-size: .72rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
  backdrop-filter: blur(4px);
}

/* =============================================
   KVKK COOKIE BAR
   ============================================= */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: #1a2e1f;
  border-top: 3px solid #2E7D4F;
  box-shadow: 0 -4px 24px rgba(0,0,0,.25);
  animation: cookieSlideUp .4s ease;
}

@keyframes cookieSlideUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}

.cookie-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.cookie-bar-text {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
  min-width: 260px;
}

.cookie-bar-icon {
  font-size: 1.4rem;
  color: #7CB342;
  flex-shrink: 0;
  margin-top: 2px;
}

.cookie-bar-text p {
  margin: 0;
  font-size: .85rem;
  color: rgba(255,255,255,.85);
  line-height: 1.5;
}

.cookie-link {
  color: #7CB342;
  text-decoration: underline;
}

.cookie-link:hover { color: #8BC34A; }

.cookie-bar-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 280px;
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 8px 14px;
}

.cookie-option-info {
  display: flex;
  flex-direction: column;
}

.cookie-option-name {
  font-size: .82rem;
  font-weight: 600;
  color: #fff;
}

.cookie-option-desc {
  font-size: .74rem;
  color: rgba(255,255,255,.55);
}

.cookie-always-on {
  font-size: .74rem;
  color: #7CB342;
  font-weight: 600;
  white-space: nowrap;
}

/* Switch rengi */
.cookie-option .form-check-input:checked {
  background-color: #2E7D4F;
  border-color: #2E7D4F;
}

.cookie-bar-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 180px;
}

.cookie-btn-all {
  background: #2E7D4F;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: .88rem;
  font-weight: 600;
  transition: background .2s;
}

.cookie-btn-all:hover {
  background: #7CB342;
  color: #fff;
}

.cookie-btn-selected {
  background: transparent;
  color: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 10px;
  padding: 10px 20px;
  font-size: .88rem;
  transition: all .2s;
}

.cookie-btn-selected:hover {
  border-color: rgba(255,255,255,.5);
  color: #fff;
}

/* KVKK sayfası */
.privacy-content h4 {
  color: #2E7D4F;
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: .5rem;
}

.privacy-content p {
  color: #4a4a42;
  line-height: 1.7;
}

/* Mobil */
@media (max-width: 768px) {
  .cookie-bar-inner {
    flex-direction: column;
    padding: 16px;
  }
  .cookie-bar-actions {
    flex-direction: row;
    width: 100%;
  }
  .cookie-btn-all,
  .cookie-btn-selected {
    flex: 1;
    text-align: center;
  }
}

/* =============================================
   PWA INSTALL BANNER
   ============================================= */
.pwa-install-banner {
  position: fixed;
  bottom: 80px; /* cookie bar üzerinde */
  left: 16px;
  right: 16px;
  z-index: 9997;
  max-width: 420px;
  margin: 0 auto;
}

.pwa-install-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid #E5E2D8;
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
}

.pwa-install-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  flex-shrink: 0;
}

.pwa-install-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  font-size: .85rem;
}

.pwa-install-text strong { color: #2B2B28; }
.pwa-install-text span   { color: #6B6B63; font-size: .78rem; }

.pwa-install-btn {
  background: #2E7D4F;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: .85rem;
  font-weight: 600;
  white-space: nowrap;
}

.pwa-install-dismiss {
  background: none;
  border: none;
  color: #9B9B8E;
  font-size: 1.1rem;
  padding: 4px;
  line-height: 1;
}

/* =============================================
   YARDIM SAYFASI
   ============================================= */
.help-header {
  background: linear-gradient(135deg, #f0faf4, #e8f5e9);
  border: 1px solid #c3e6cb;
  border-radius: 16px;
  padding: 24px;
}

.help-header-icon {
  width: 56px;
  height: 56px;
  background: #2E7D4F;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  flex-shrink: 0;
}

.help-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.help-quick-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: #fff;
  border: 1px solid #E5E2D8;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 500;
  color: #2B2B28;
  text-decoration: none;
  transition: all .2s;
}

.help-quick-link:hover {
  background: #2E7D4F;
  border-color: #2E7D4F;
  color: #fff;
}

.help-accordion .accordion-button {
  font-weight: 600;
  font-size: .95rem;
}

.help-accordion .accordion-button:not(.collapsed) {
  background: #f0faf4;
  color: #2E7D4F;
  box-shadow: none;
}

.help-accordion .accordion-button::after {
  filter: none;
}

.help-card {
  border: 1px solid #E5E2D8 !important;
  border-radius: 12px !important;
  margin-bottom: 8px;
  overflow: hidden;
}

.help-desc {
  color: #4a4a42;
  font-size: .9rem;
  background: #FAF7F0;
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 20px;
  border-left: 3px solid #2E7D4F;
}

.help-section {
  margin-bottom: 20px;
}

.help-section:last-child {
  margin-bottom: 0;
}

.help-section-title {
  font-size: .88rem;
  font-weight: 700;
  color: #2B2B28;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid #f0ede6;
}

.help-steps {
  padding-left: 20px;
  margin: 0;
}

.help-steps li {
  font-size: .88rem;
  color: #4a4a42;
  padding: 4px 0;
  line-height: 1.6;
}

.help-steps li strong {
  color: #2B2B28;
}

.help-steps li code {
  background: #f0faf4;
  color: #2E7D4F;
  padding: 1px 6px;
  border-radius: 4px;
  font-size: .85rem;
}

.help-tip {
  background: #fffbf0;
  border: 1px solid #fde68a;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: .85rem;
  color: #78611a;
  margin-top: 16px;
}

.help-footer {
  text-align: center;
  padding: 16px;
  background: #FAF7F0;
  border-radius: 12px;
  font-size: .88rem;
  color: #6B6B63;
}

.help-footer a {
  color: #2E7D4F;
  font-weight: 600;
}

/* =============================================
   BESİN DEĞERLERİ TABLOSU
   ============================================= */
.nutrition-card {
  background: #f0faf4;
  border: 1px solid #c3e6cb;
  border-radius: 14px;
  padding: 20px;
}

.nutrition-title {
  font-size: .95rem;
  font-weight: 700;
  color: #2E7D4F;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
}

.nutrition-per {
  font-size: .75rem;
  font-weight: 400;
  color: #6B6B63;
  margin-left: auto;
}

.nutrition-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
}

.nutrition-item {
  background: #fff;
  border: 1px solid #E5E2D8;
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nutrition-label {
  font-size: .72rem;
  color: #6B6B63;
  text-transform: uppercase;
  letter-spacing: .4px;
}

.nutrition-value {
  font-size: 1rem;
  font-weight: 700;
  color: #2B2B28;
}

/* =============================================
   STOK / MEVSİMSELLİK GÖSTERGESİ
   ============================================= */
.availability-badge {
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: .3px;
  display: inline-block;
}
.badge-available  { background: #e8f5e9; color: #2E7D4F; }
.badge-seasonal   { background: #f0faf4; color: #558B2F; }
.badge-coming     { background: #fff8e1; color: #F57F17; }
.badge-out        { background: #ffeaea; color: #C62828; }

/* =============================================
   ÜRÜN ARAMA
   ============================================= */
.product-search-form { max-width: 560px; }

.product-search-wrap {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1.5px solid #E5E2D8;
  border-radius: 50px;
  padding: 6px 6px 6px 16px;
  gap: 8px;
  transition: border-color .2s;
}

.product-search-wrap:focus-within {
  border-color: #2E7D4F;
  box-shadow: 0 0 0 3px rgba(46,125,79,.1);
}

.product-search-icon { color: #9B9B8E; font-size: 1rem; }

.product-search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: .9rem;
  background: transparent;
  color: #2B2B28;
}

.product-search-clear {
  color: #9B9B8E;
  font-size: 1rem;
  text-decoration: none;
}

.product-search-btn {
  background: #2E7D4F;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 7px 18px;
  font-size: .85rem;
  font-weight: 600;
  white-space: nowrap;
}

.product-search-result {
  font-size: .9rem;
  color: #6B6B63;
}

/* =============================================
   SSS SAYFASI
   ============================================= */
.faq-group-title {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #2E7D4F;
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 2px solid #E5E2D8;
}

.faq-item {
  border: 1px solid #E5E2D8 !important;
  border-radius: 10px !important;
  margin-bottom: 8px;
  overflow: hidden;
}

.faq-btn {
  font-size: .9rem;
  font-weight: 600;
  color: #2B2B28;
}

.faq-btn:not(.collapsed) {
  color: #2E7D4F;
  background: #f0faf4;
  box-shadow: none;
}

.faq-answer {
  font-size: .88rem;
  color: #4a4a42;
  line-height: 1.7;
}

.faq-contact-box {
  text-align: center;
  background: #FAF7F0;
  border-radius: 16px;
  padding: 32px;
}

/* =============================================
   BREADCRUMB
   ============================================= */
.site-breadcrumb {
  background: #FAF7F0;
  border-bottom: 1px solid #E5E2D8;
  padding: 10px 0;
}

.site-breadcrumb .breadcrumb {
  margin: 0;
  padding: 0;
  background: none;
  font-size: .82rem;
}

.site-breadcrumb .breadcrumb-item a {
  color: #2E7D4F;
  text-decoration: none;
}

.site-breadcrumb .breadcrumb-item a:hover {
  text-decoration: underline;
}

.site-breadcrumb .breadcrumb-item.active {
  color: #6B6B63;
  font-weight: 500;
}

.site-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: #9B9B8E;
}

/* =============================================
   İLKELERİMİZ SAYFASI
   ============================================= */

/* Header */
.principles-header {
  background: linear-gradient(135deg, #1a4d2e 0%, #2E7D4F 60%, #1e6b8a 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.principles-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle, rgba(255,255,255,.06) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
}

.principles-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.principles-eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #7CB342;
  margin-bottom: 12px;
}

.principles-header-text h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.15;
}

.principles-header-text p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  max-width: 480px;
  line-height: 1.7;
  margin: 0;
}

.principles-header-stat {
  display: flex;
  gap: 32px;
  flex-shrink: 0;
}

.principles-stat-item {
  text-align: center;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 16px;
  padding: 20px 24px;
}

.principles-stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.principles-stat-label {
  display: block;
  font-size: .75rem;
  color: rgba(255,255,255,.7);
  margin-top: 4px;
}

/* Liste */
.principles-section {
  padding: 80px 0;
  background: #FAF7F0;
}

.principles-list {
  max-width: 860px;
  margin: 0 auto;
}

/* Her ilke satırı */
.principle-item {
  display: flex;
  gap: 0;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}

.principle-item.principle-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Gecikme — sıralı animasyon */
.principle-item:nth-child(1)  { transition-delay: .05s; }
.principle-item:nth-child(2)  { transition-delay: .10s; }
.principle-item:nth-child(3)  { transition-delay: .15s; }
.principle-item:nth-child(4)  { transition-delay: .20s; }
.principle-item:nth-child(5)  { transition-delay: .25s; }
.principle-item:nth-child(6)  { transition-delay: .30s; }
.principle-item:nth-child(7)  { transition-delay: .35s; }
.principle-item:nth-child(8)  { transition-delay: .40s; }
.principle-item:nth-child(9)  { transition-delay: .45s; }
.principle-item:nth-child(10) { transition-delay: .50s; }

/* Sol kolon — ikon + bağlayıcı çizgi */
.principle-icon-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80px;
  flex-shrink: 0;
}

.principle-icon-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.principle-num {
  font-size: .7rem;
  font-weight: 800;
  color: var(--p-color);
  letter-spacing: 1px;
}

.principle-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 2.5px solid var(--p-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--p-color);
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  transition: transform .2s, box-shadow .2s;
}

.principle-item:hover .principle-icon-circle {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(0,0,0,.14);
}

/* Dikey bağlayıcı çizgi */
.principle-connector {
  width: 2px;
  height: 48px;
  background: linear-gradient(to bottom, #E5E2D8, transparent);
  margin: 4px 0;
}

/* Sağ kolon — kart */
.principle-content-col {
  flex: 1;
  padding-bottom: 32px;
  padding-left: 20px;
}

.principle-card {
  background: #fff;
  border: 1px solid #E5E2D8;
  border-radius: 16px;
  padding: 24px 28px;
  transition: box-shadow .2s, transform .2s;
  position: relative;
}

/* Ok işareti — ikonu karta bağlayan */
.principle-card::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 20px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-left: 1px solid #E5E2D8;
  border-bottom: 1px solid #E5E2D8;
  transform: rotate(45deg);
}

.principle-item:hover .principle-card {
  box-shadow: 0 8px 32px rgba(46,125,79,.10);
  transform: translateX(4px);
}

.principle-title {
  font-size: 1rem;
  font-weight: 700;
  color: #2B2B28;
  margin-bottom: 8px;
}

.principle-text {
  font-size: .88rem;
  color: #4a4a42;
  line-height: 1.75;
  margin: 0;
}

/* Alt CTA */
.principles-cta {
  margin-top: 60px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.principles-cta-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, #2E7D4F, #3E86B8);
  border-radius: 20px;
  padding: 28px 32px;
  color: #fff;
}

.principles-cta-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  opacity: .9;
}

.principles-cta-inner h5 {
  margin: 0 0 4px;
  font-weight: 700;
  font-size: 1.05rem;
}

.principles-cta-inner p {
  margin: 0;
  font-size: .9rem;
  color: rgba(255,255,255,.95);
  opacity: 1;
}

.principles-cta-btn {
  margin-left: auto;
  background: #fff;
  color: #2E7D4F;
  border: none;
  border-radius: 50px;
  padding: 10px 22px;
  font-size: .88rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform .2s;
}

.principles-cta-btn:hover {
  transform: translateX(4px);
  background: #fff;      /* Bootstrap .btn:hover gri arkaplanını ez, beyaz kalsın */
  color: #2E7D4F;        /* yazı koyu yeşil okunur */
  border: none;
}

/* Mobil */
@media (max-width: 768px) {
  .principles-header-inner {
    flex-direction: column;
  }

  .principles-header-text h1 {
    font-size: 1.9rem;
  }

  .principles-header-stat {
    gap: 12px;
  }

  .principles-stat-item {
    padding: 14px 16px;
  }

  .principles-stat-num {
    font-size: 1.5rem;
  }

  .principle-icon-col {
    width: 60px;
  }

  .principle-icon-circle {
    width: 46px;
    height: 46px;
    font-size: 1.1rem;
  }

  .principles-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .principles-cta-btn {
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }
}

/* =============================================
   ANASAYFA BLOG & TARİFLER BÖLÜMÜ
   ============================================= */
.blog-home-section {
  padding: 80px 0;
  background:
    linear-gradient(135deg, rgba(30,58,42,.88), rgba(46,125,79,.78)),
    url('/uploads/blog/bginek.jpg') center / cover no-repeat fixed;
  position: relative;
}

.blog-home-section .section-subtitle {
  color: rgba(255,255,255,.85);
}

/* Mobil */
@media (max-width: 768px) {
  .blog-home-section {
    padding: 56px 0;
    background-attachment: scroll;
  }
}

/* =============================================
   HATA SAYFALARI
   ============================================= */
.error-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 60px 0;
  background: #FAF7F0;
}

.error-box {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.error-code {
  font-size: 7rem;
  font-weight: 900;
  color: #E5E2D8;
  line-height: 1;
  margin-bottom: -20px;
  font-variant-numeric: tabular-nums;
}

.error-icon {
  font-size: 3rem;
  color: #2E7D4F;
  margin-bottom: 16px;
}

.error-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #2B2B28;
  margin-bottom: 12px;
}

.error-desc {
  color: #6B6B63;
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.error-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.error-btn-primary {
  background: #2E7D4F;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 28px;
  font-weight: 600;
}

.error-btn-primary:hover { background: #7CB342; color: #fff; }

.error-btn-secondary {
  background: transparent;
  color: #2E7D4F;
  border: 1.5px solid #2E7D4F;
  border-radius: 50px;
  padding: 12px 28px;
  font-weight: 600;
}

.error-btn-secondary:hover {
  background: #2E7D4F;
  color: #fff;
}

.error-reqid {
  margin-top: 24px;
  font-size: .75rem;
  color: #9B9B8E;
}

/* =============================================
   MARKALARIMIZ BÖLÜMÜ
   ============================================= */
.brands-section {
  padding: 80px 0;
  background: #FAF7F0;
}

.brand-card {
  background: #fff;
  border: 1px solid #E5E2D8;
  border-radius: 20px;
  padding: 40px 28px 32px;
  text-align: center;
  height: 100%;
  transition: transform .25s, box-shadow .25s;
}

.brand-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(46,125,79,.12);
}

.brand-logo {
  width: 150px;
  height: 150px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #c3e6cb;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;                  /* padding yok — logo alanın tamamını kaplar */
  color: #2E7D4F;
  font-size: 3rem;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;           /* logoyu büyüt — container'ı doldurur; logolar 1536px yüksek çözünürlükte, net kalır */
  object-position: center;
  filter: none;
}

.brand-name {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #2B2B28;
  margin-bottom: 10px;
}

.brand-desc {
  font-size: .88rem;
  color: #6B6B63;
  line-height: 1.7;
  margin: 0;
}
