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

body {
  font-family: 'Cocogoose-Pro-Regular-trial.ttf', sans-serif;
  color: #1a1a1a;
  background-color: #fff;
}

/* Yeni eklenen stiller */
.mobile-header-right {
display: none;
align-items: center;
gap: 15px;
}

@media(max-width: 768px) {
.mobile-header-right {
    display: flex;
}

/* Mobildeki dil seçiciyi düzenle */
.mobile-language .lang-icon {
    font-size: 23px;
    padding: 6px 10px;
    background: transparent;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 25px;
}

.mobile-language .lang-dropdown {
  display: none;
    position: absolute;
    left: 0;
    top: 100%;
    transform: translateX(-50%); /* Sola doğru hizala */
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 1000;
    min-width: 140px;
    margin-top: 5px;
}

/* Mobil menüdeki dil seçiciyi gizle */
.mobile-menu .language-selector {
    display: none;
}
}

header {
  background: #fff;
  opacity: 0.8;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo {
  display: inline-block;
  width: 220px; /* Logo genişliği */
  height: 70px; /* Logo yüksekliği */
  background: url('/image/logo.png') center/cover no-repeat;
  alt: "Logo";
  text-indent: -9999px; /* Metni ekran dışına taşı */
  overflow: hidden; /* Taşan metni gizle */
}

.logo a {
  display: block;
  width: 100%;
  height: 100%;
}

nav {
  display: flex;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.2s;
}

nav a:hover {
  color: #ff9800;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: #333;
  transition: all 0.3s ease;
}

/* Mobil Menü */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  position: absolute;
  top: 70px;
  right: 30px;
  width: 200px;
  border: 1px solid #eee;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  border-radius: 6px;
  overflow: hidden;
}

.mobile-menu a {
  padding: 15px;
  border-bottom: 1px solid #f0f0f0;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.mobile-menu a:hover {
  background: #f7f7f7;
}

@media(max-width: 768px) {
  nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}
.hero {
  position: relative;
  height: 100vh;
  background: url('/image/hero.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
  animation: fadeIn 2s ease forwards;
  opacity: 0;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.hero h1 {
  font-size: 48px;
  font-family: 'Cocogoose-Pro-Bold-trial.ttf', serif;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

section {
  padding: 80px 60px;
}

.about, .contact {
  text-align: center;
}

.about h2, .contact h2 {
  font-size: 32px;
  font-family: 'Cocogoose-Pro-Regular-trial.ttf', serif;
  margin-bottom: 20px;
}

.about p, .contact p {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  color: #444;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  color: #333;
}

.contact-box {
  flex: 1 1 300px;
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.contact-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #000;
}

.contact-box p, .contact-box a {
  color: #555;
  line-height: 1.6;
  text-decoration: none;
}

.map {
  margin-top: 50px;
  width: 100%;
  max-width: 800px;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.product-slider {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 20px;
}

.product-card {
  min-width: 280px;
  flex-shrink: 0;
  scroll-snap-align: start;
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  background-color: #fff;
}

.product-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-card h3 {
  padding: 15px;
  font-size: 20px;
}

.view-more {
  display: block;
  width: fit-content;
  margin: 40px auto 0;
  padding: 12px 24px;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.view-more:hover {
  background-color: #333;
}

footer {
  background-color: #111;
  color: #ccc;
  text-align: center;
  padding: 30px 0;
  font-size: 14px;
}

.social-icons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icons a {
  color: #444;
  font-size: 24px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #000;
}

.whatsapp-fixed {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  padding: 14px 16px;
  border-radius: 50%;
  font-size: 24px;
  z-index: 999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
}

.whatsapp-fixed:hover {
  background-color: #1ebf57;
}
.whatsapp-floating {
position: fixed;
bottom: 20px;
right: 20px;
z-index: 9999;
}

.whatsapp-btn {
background-color: #25D366;
color: white;
padding: 12px 14px;
border-radius: 50%;
font-size: 24px;
text-align: center;
cursor: pointer;
box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.whatsapp-options {
display: none;
position: absolute;
bottom: 60px;
right: 0;
background: white;
border: 1px solid #ccc;
border-radius: 8px;
overflow: hidden;
}

.whatsapp-options a {
display: block;
padding: 10px 15px;
color: #333;
text-decoration: none;
border-bottom: 1px solid #eee;
}

.whatsapp-options a:hover {
background-color: #f0f0f0;
}



.product-image {
width: 100%;
height: 280px;
background-size: cover;
background-position: center;
border-radius: 10px 10px 0 0;
}


.language-selector {
position: relative;
display: flex;
align-items: center; /* DİKEY ORTALAMA */
margin-left: 20px;
}

.lang-icon {
font-size: 18px;
padding: 6px 10px;
background: transparent;
border-radius: 6px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
height: 25px;
}
.lang-dropdown {
display: none;
position: absolute;
right: 0;
top: 40px;
background-color: white;
border: 1px solid #ccc;
border-radius: 6px;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
z-index: 1000;
min-width: 140px;
}

.lang-dropdown div {
padding: 10px;
cursor: pointer;
border-bottom: 1px solid #eee;
}

.lang-dropdown div:last-child {
border-bottom: none;
}

.lang-dropdown div:hover {
background-color: #f5f5f5;
}

.mobile-language {
margin-top: 10px;
margin-left: 15px;
align-items: flex-start;
}
.mobile-language .lang-dropdown {
top: 35px;
left: 0;
}


.contact-row {
  display: flex;
  margin-bottom: 10px; /* Satırlar arası boşluk */
}

.contact-name {
  width: 150px; /* İsimler için sabit genişlik */
  font-weight: 500; /* İsimleri biraz kalın yapalım */
}

.contact-number {
  flex: 1; /* Kalan alanı kaplasın */
}

@media (max-width: 768px) {
  .contact-row {
    flex-direction: column; /* Dikey hizalama */
    gap: 5px; /* İsim ve numara arası boşluk */
  }
  
  .contact-name {
    width: 100%; /* Tam genişlik */
  }
  .hero h1 {
    font-size: 30px; /* Mobilde okunabilir boyut */
    display: inline-block; /* Yan yana dizilim için */
  }
}