/* HERO Alanı – Yazı Sol Altta */
.hero {
  position: relative;
  height: 60vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 40px;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-text-overlay {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: left;
  animation: fadeInOverlay 1s ease-out forwards;
}

.hero-text-overlay h1 {
  font-size: 3rem;
  font-weight: 900;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-text-overlay h2 {
  font-size: 2rem;
  font-weight: 300;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@keyframes fadeInOverlay {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Ürün İçerik Blokları */
.split-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  height: 100vh;
}

.split-row.reverse {
  flex-direction: row-reverse;
}

.split-text,
.split-image {
  flex: 1 1 50%;
  max-width: 50%;
  padding: 60px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-text h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #111;
}

.split-text p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
  text-align: justify;
  margin-bottom: 20px;
}

.split-image {
  padding: 0;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* RELATED PRODUCTS */
.related-products {
  padding: 80px 20px;
  background-color: #fff;
  text-align: left;
}

.related-container {
  max-width: 1200px;
  margin: 0 auto;
}

.related-products h2 {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 40px;
}

.related-products h2 span {
  font-weight: 300;
  letter-spacing: 1px;
}

.related-products h2 strong {
  font-weight: 900;
}

.related-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.related-item {
  flex: 1 1 200px;
  max-width: 240px;
  text-align: center;
  text-decoration: none;
  color: #222;
  transition: transform 0.3s ease;
}

.related-item img {
  width: 100%;
  border-radius: 50%;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.related-item:hover img {
  transform: scale(1.08);
}

.related-item p {
  font-size: 1rem;
  color: #222;
}

/* ÜRÜN HAKKINDA */
.product-about {
  background-color: #fff;
  padding: 40px 30px;
  border-top: 3px solid #ff7c00;
  border-bottom: 3px solid #ff7c00;
}

.product-about .container {
  max-width: 1000px;
  margin: 0 auto;
}

.product-about h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-align: center;
  color: #111;
}

.product-about p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
  text-align: justify;
}

/* BLOG HEADER */
.blog-header {
  background-color: #f8f8f8;
  padding: 80px 20px 60px;
  text-align: center;
  border-bottom: 2px solid #eee;
}

.blog-header h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #222;
  font-weight: 700;
}

.blog-header p {
  font-size: 1.2rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.blog-content p {
  margin-bottom: 20px;
  text-align: justify;
  line-height: 1.8;
}

/* RESPONSIVE TASARIM */
@media (max-width: 768px) {
  /* Hero alanı */
  .hero {
    padding: 20px;
    height: 50vh;
  }

  .hero-text-overlay h1 {
    font-size: 2.2rem;
  }

  .hero-text-overlay h2 {
    font-size: 1.4rem;
  }

  /* Blog başlıkları */
  .blog-header h1 {
    font-size: 2.2rem;
  }

  .blog-header p {
    font-size: 1rem;
  }

  /* Ürün blokları (split) */
  .split-row,
  .split-row.reverse {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding: 0;
    margin: 0;
    gap: 0;
    height: auto !important;
    overflow-x: hidden;
  }

  .split-text,
  .split-image {
    width: 100%;
    max-width: 100%;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    flex: none;
  }

  .split-text h2 {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }

  .split-text p {
    font-size: 1rem;
    line-height: 1.6;
    text-align: justify;
  }

  .split-image {
    padding: 0;
  }

  .split-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
  }

  body {
    overflow-x: hidden;
  }
}
.related-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 10px 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.related-item {
  flex: 0 0 auto;
  width: 220px;
  scroll-snap-align: center;
  text-align: center;
  margin: 0 auto;
}