@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

:root {
  /* Klasik orman / sage — parlak çimen yerine derin, muted tonlar */
  --green-900: #121a18;
  --green-800: #1B2A26;
  --green-700: #2E4540;
  --green-600: #3D5A52;
  --green-500: #4F7066;
  --green-400: #6b8f84;
  --green-300: #9fb5ad;
  --green-100: #e2e9e8;
  --green-50: #f3f6f5;
  --gray-900: #1a1a1a;
  --gray-800: #2d2d2d;
  --gray-700: #404040;
  --gray-600: #555555;
  --gray-500: #777777;
  --gray-400: #999999;
  --gray-300: #c4c4c4;
  --gray-200: #e0e0e0;
  --gray-100: #f5f5f5;
  --gray-50: #fafafa;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 500;
  color: var(--gray-800);
  background: var(--gray-50);
  line-height: 1.65;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--green-700);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--green-600);
}

::selection {
  background: var(--green-100);
  color: var(--green-900);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--green-900);
  color: rgba(255,255,255,0.8);
  font-size: 0.8rem;
  padding: 8px 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar a {
  color: rgba(255,255,255,0.8);
}

.top-bar a:hover {
  color: var(--white);
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ===== HEADER / NAVBAR ===== */
.site-header {
  background: var(--white);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--gray-900);
  flex-shrink: 0;
}

.logo:hover,
.logo:focus,
.logo:visited {
  color: var(--gray-900);
}

.logo-img {
  width: 42px;
  height: 42px;
  max-width: 42px;
  max-height: 42px;
  flex-shrink: 0;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text h1 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #1B2A26 !important;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
  display: block;
}

.logo-text span {
  font-size: 0.65rem;
  color: #6b7280 !important;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
}

/* Navigation */
.main-nav {
  background: var(--white);
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-list {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  gap: 0;
}

.nav-list li a {
  display: block;
  padding: 16px 28px;
  color: var(--gray-700);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--transition);
  position: relative;
}

.nav-list li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--green-600);
  transition: width var(--transition);
  border-radius: 3px 3px 0 0;
}

.nav-list li a:hover,
.nav-list li a.active {
  background: var(--green-50);
  color: var(--green-800);
}

.nav-list li a:hover::after,
.nav-list li a.active::after {
  width: 60%;
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--green-800);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 12px 16px;
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(145deg, var(--green-900) 0%, var(--green-800) 42%, var(--green-700) 100%);
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero--slider {
  padding-bottom: 96px;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    145deg,
    rgba(18, 26, 24, 0.92) 0%,
    rgba(27, 42, 38, 0.78) 42%,
    rgba(46, 69, 64, 0.55) 100%
  );
  pointer-events: none;
}

.hero-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 2;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="100" cy="100" r="80" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="2"/><circle cx="100" cy="100" r="60" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="2"/><circle cx="100" cy="100" r="40" fill="none" stroke="rgba(255,255,255,0.02)" stroke-width="2"/></svg>') no-repeat center center;
  background-size: contain;
  pointer-events: none;
}

.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 10px;
  align-items: center;
}

.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.55);
}

.hero-dot.is-active {
  background: var(--white);
  transform: scale(1.2);
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: none;
  }
  .hero-dot {
    transition: none;
  }
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.hero p {
  font-size: 1.08rem;
  font-weight: 500;
  opacity: 0.88;
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 32px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--green-800);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  box-shadow: var(--shadow-lg);
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
  color: var(--green-700);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-cta--ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.88);
  box-shadow: none;
}

.hero-cta--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

/* ===== PAGE LAYOUT ===== */
.page-content {
  padding: 50px 0 80px;
}

.content-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

.content-grid--home {
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 36px;
  align-items: stretch;
}

/* Ana sayfa — Kategoriler (2 sütun, grid çizgileri) */
.sidebar--home {
  top: 100px;
}

.popular-categories {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin-bottom: 24px;
}

.popular-categories__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.03em;
  padding: 12px 14px 10px;
  margin: 0;
  border-bottom: 1px solid var(--gray-200);
}

.popular-categories__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: var(--gray-200);
  gap: 1px;
}

.popular-categories__cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 8px 7px;
  background: var(--white);
  color: var(--gray-800);
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.25;
  transition: background var(--transition), color var(--transition);
  min-height: 0;
}

.popular-categories__cell:hover,
.popular-categories__cell:focus-visible {
  background: var(--green-50);
  color: var(--green-800);
  outline: none;
}

.popular-categories__cell:focus-visible {
  box-shadow: inset 0 0 0 2px var(--green-500);
}

.popular-categories__thumb {
  width: 56px;
  max-width: 56px;
  height: 56px;
  aspect-ratio: 1;
  border-radius: 6px;
  overflow: hidden;
  background: var(--gray-100);
  flex-shrink: 0;
}

.popular-categories__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition);
}

.popular-categories__cell:hover .popular-categories__thumb img {
  transform: scale(1.04);
}

.popular-categories__label {
  display: block;
  max-width: 100%;
  word-break: break-word;
}

.main-content--home {
  display: flex;
  flex-direction: column;
  min-height: 360px;
}

.content-image--hero {
  flex: 1;
  margin: 0;
  min-height: 280px;
  display: flex;
  align-items: stretch;
}

.content-image--hero img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center;
}

/* ===== SIDEBAR ===== */
.sidebar {
  position: sticky;
  top: 120px;
}

.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  margin-bottom: 24px;
}

.sidebar-title {
  background: linear-gradient(145deg, var(--green-700) 0%, var(--green-800) 100%);
  color: var(--white);
  padding: 18px 24px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-title svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.category-list {
  list-style: none;
  padding: 8px 0;
}

.category-list li {
  border-bottom: 1px solid var(--gray-100);
}

.category-list li:last-child {
  border-bottom: none;
}

.category-list li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 24px;
  color: var(--gray-700);
  font-size: 0.88rem;
  font-weight: 600;
  transition: all var(--transition);
}

.category-list li a::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--green-400);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all var(--transition);
}

.category-list li a:hover {
  background: var(--green-50);
  color: var(--green-800);
  padding-left: 30px;
}

.category-list li a:hover::before {
  background: var(--green-600);
  transform: scale(1.3);
}

/* ===== MAIN CONTENT ===== */
.main-content {
  min-width: 0;
}

.page-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-800);
  margin-bottom: 8px;
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.page-subtitle {
  color: var(--gray-500);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 32px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 24px;
}

.breadcrumb a {
  color: var(--gray-500);
}

.breadcrumb a:hover {
  color: var(--green-700);
}

.breadcrumb span {
  color: var(--gray-300);
}

.breadcrumb strong {
  font-weight: 700;
  color: var(--gray-700);
}

.content-text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  color: var(--gray-700);
}

.content-text p {
  margin-bottom: 16px;
}

.content-text strong {
  font-weight: 700;
  color: var(--gray-800);
}

.product-detail-html p {
  margin-bottom: 1rem;
}

.product-detail-html p:last-child {
  margin-bottom: 0;
}

.lead-text {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gray-800);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.inline-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--green-800);
  margin: 1.5rem 0 0.75rem;
  letter-spacing: -0.02em;
}

.map-link {
  font-weight: 700;
  color: var(--green-700);
}

.map-link:hover {
  color: var(--green-600);
}

.gallery-item-wrap {
  margin: 0;
}

.gallery-caption {
  margin-top: 12px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-600);
  line-height: 1.5;
  padding: 0 4px;
}


.content-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin: 24px 0;
}

.content-image img {
  width: 100%;
  display: block;
}

/* ===== PRODUCT GRID ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--gray-200);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-300);
}

.product-card-image {
  position: relative;
  padding-top: 70%;
  overflow: hidden;
  background: var(--gray-100);
}

.product-card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform var(--transition);
}

.product-card:hover .product-card-image img {
  transform: scale(1.05);
}

.product-card-body {
  padding: 18px 20px;
}

.product-card-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 6px;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.product-card-ref {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green-700);
  transition: gap var(--transition);
}

.product-card-link:hover {
  gap: 8px;
}

/* ===== CONTACT INFO ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.contact-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--green-400);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  background: var(--green-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--green-700);
  font-size: 1.2rem;
}

.contact-card h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--gray-800);
  margin-bottom: 8px;
}

.contact-card p {
  color: var(--gray-600);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.7;
}

/* ===== REFERENCES / GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.03);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo.footer-logo {
  display: inline-flex;
  margin-bottom: 4px;
}

.footer-brand .logo.footer-logo .logo-text h1 {
  color: #ffffff !important;
}

.footer-brand .logo.footer-logo .logo-text span {
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}

.footer-company-legal {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-company-line {
  margin: 0;
  line-height: 1.55;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.58);
  letter-spacing: 0.02em;
  max-width: 22rem;
}

.footer-company-line--suffix {
  margin-top: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.footer-tagline {
  margin: 14px 0 0;
  line-height: 1.65;
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.52);
  max-width: 26rem;
}

.footer-links-parent > a {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}

.footer-links-sub {
  list-style: none;
  margin: 8px 0 0;
  padding: 0 0 0 14px;
  border-left: 2px solid rgba(74, 222, 128, 0.35);
}

.footer-links-sub li {
  margin-bottom: 6px;
}

.footer-links-sub li a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.48);
  font-weight: 500;
}

.footer-links-sub li a:hover {
  color: var(--green-300);
  padding-left: 0;
}

.footer-title {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  font-weight: 500;
  transition: all var(--transition);
}

.footer-links li a:hover {
  color: var(--green-300);
  padding-left: 4px;
}

.footer-links .footer-links-sub li a:hover {
  padding-left: 0;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--green-400);
  opacity: 0.95;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ===== FLOATING CONTACT (PHONE + WHATSAPP) ===== */
.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.phone-float,
.whatsapp-float {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #fff;
  transition: transform var(--transition), box-shadow var(--transition);
}

.phone-float {
  background: var(--green-700);
  box-shadow: 0 4px 16px rgba(46, 69, 64, 0.55), 0 2px 8px rgba(0, 0, 0, 0.12);
}

.phone-float:hover {
  transform: scale(1.06);
  color: #fff;
  box-shadow: 0 6px 22px rgba(46, 69, 64, 0.55), 0 4px 12px rgba(0, 0, 0, 0.15);
}

.whatsapp-float {
  background: #25d366;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(0, 0, 0, 0.15);
}

.whatsapp-float:hover {
  transform: scale(1.06);
  color: #fff;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.5), 0 4px 12px rgba(0, 0, 0, 0.18);
}

.phone-float svg,
.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

@media (max-width: 480px) {
  .floating-actions {
    right: 14px;
    bottom: 16px;
    gap: 10px;
  }

  .phone-float,
  .whatsapp-float {
    width: 54px;
    height: 54px;
  }

  .phone-float svg,
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

/* ===== ABOUT PAGE ===== */
.about-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.about-content h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green-800);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

/* ===== NEWS / ANNOUNCEMENTS ===== */
.news-list {
  list-style: none;
}

.news-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-200);
}

.news-list li:last-child {
  border-bottom: none;
}

.news-list li a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray-700);
  font-size: 0.92rem;
  font-weight: 600;
  transition: all var(--transition);
}

.news-list li a::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--green-500);
  border-radius: 50%;
  flex-shrink: 0;
}

.news-list li a:hover {
  color: var(--green-800);
  padding-left: 8px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .content-grid {
    grid-template-columns: 240px 1fr;
    gap: 28px;
  }

  .content-grid--home {
    grid-template-columns: minmax(240px, 320px) 1fr;
    gap: 28px;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  .top-bar {
    display: none;
  }

  .nav-container {
    flex-wrap: wrap;
  }

  .logo {
    flex: 1;
  }

  .logo-text h1 {
    font-size: 1rem;
  }

  .logo-text span {
    font-size: 0.55rem;
  }

  .nav-toggle {
    display: block;
  }

  .nav-list {
    display: none;
    flex-direction: column;
    width: 100%;
  }

  .nav-list.active {
    display: flex;
  }

  .nav-list li a {
    padding: 14px 24px;
    border-bottom: 1px solid var(--gray-100);
  }

  .hero {
    padding: 50px 0;
  }

  .hero--slider {
    padding-bottom: 76px;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .content-grid--home {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
  }

  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 12px;
    align-items: start;
  }

  .footer-grid .footer-brand {
    grid-column: 1 / -1;
  }

  .site-footer .footer-title {
    font-size: 0.7rem;
    margin-bottom: 12px;
    letter-spacing: 0.08em;
    line-height: 1.35;
  }

  .site-footer .footer-links li {
    margin-bottom: 8px;
  }

  .site-footer .footer-links li a {
    font-size: 0.78rem;
  }

  .site-footer .footer-contact-item {
    font-size: 0.78rem;
    gap: 8px;
  }

  .site-footer .footer-contact-item svg {
    width: 18px;
    height: 18px;
    margin-top: 2px;
  }

  .about-content {
    padding: 28px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 480px) {
  .hero h2 {
    font-size: 1.6rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

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

/* ===== REFERANSLARIMIZ ===== */
.refs-section {
  padding: 56px 0 64px;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
}

.refs-title {
  text-align: center;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.refs-subtitle {
  text-align: center;
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 40px;
}

.refs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.refs-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px 16px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--gray-800);
  opacity: 0.7;
  transition: opacity 0.3s ease, box-shadow 0.3s ease;
}

.refs-logo:hover {
  opacity: 1;
  box-shadow: var(--shadow-md);
}

.refs-logo span {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gray-400);
  margin-top: 4px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .refs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .refs-logo {
    font-size: 0.95rem;
    padding: 22px 12px;
  }
}

@media (max-width: 480px) {
  .refs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .refs-title {
    font-size: 1.3rem;
  }
}

/* ===== SITE GİRİŞ (iki marka — tam ekran) ===== */
body.site-gate-body {
  margin: 0;
  min-height: 100vh;
  background: #0a1628;
}

.site-gate {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  width: 100%;
}

.site-gate__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 32px;
  text-decoration: none !important;
  color: rgba(255, 255, 255, 0.95) !important;
  background: radial-gradient(ellipse 120% 80% at 50% 40%, rgba(255, 255, 255, 0.06) 0%, transparent 55%),
    linear-gradient(165deg, #0d1f35 0%, #0a1628 45%, #071018 100%);
  border: none;
  outline: none;
}

.site-gate__panel:hover,
.site-gate__panel:focus,
.site-gate__panel:visited,
.site-gate__panel:active {
  color: rgba(255, 255, 255, 0.95) !important;
}

.site-gate__panel--horeca {
  background: radial-gradient(ellipse 120% 80% at 50% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 55%),
    linear-gradient(165deg, #122238 0%, #0d1a2c 45%, #081420 100%);
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.site-gate__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  transition: transform 0.4s cubic-bezier(0.34, 1.45, 0.64, 1);
  will-change: transform;
}

.site-gate__panel:hover .site-gate__inner,
.site-gate__panel:focus-visible .site-gate__inner {
  transform: scale(1.08);
}

.site-gate__panel:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.45);
  outline-offset: -4px;
  z-index: 1;
}

.site-gate__kicker {
  display: block;
  width: 100%;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 12px;
}

.site-gate__title {
  display: block;
  width: 100%;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.35rem, 3.5vw, 2rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.site-gate__address {
  display: block;
  width: 100%;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.55) !important;
  margin-bottom: 24px;
}

.site-gate__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff !important;
}

@media (max-width: 640px) {
  .site-gate {
    grid-template-columns: 1fr;
    min-height: 100vh;
  }

  .site-gate__panel--horeca {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-gate__panel {
    min-height: 50vh;
    padding: 40px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-gate__inner {
    transition: none;
  }
  .site-gate__panel:hover .site-gate__inner,
  .site-gate__panel:focus-visible .site-gate__inner {
    transform: none;
  }
}
