@charset "UTF-8";

/* Genel sifirlama */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #fff;
  color: #333;
  scroll-behavior: smooth;
  padding-top: 80px; /* Men� sabit oldugu i�in �stten bosluk */
}

/* Men� tiklamada i�erik yukari yapismasin */
section {
  scroll-margin-top: 120px;
}

/* HEADER / MENU */
header {
  position: fixed;
  top: 20px;
  width: calc(100% - 40px);
  left: 20px;
  background-color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border-radius: 40px; /* Asiri kavisli */
  z-index: 999;
  transition: top 0.3s ease;
}


.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: 1200px;
  margin: auto;
}

.logo img {
  height: 40px;
}

/* Menü */
.menu {
  display: flex;
  gap: 25px;
}

.menu a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease;
  cursor: pointer;
}

/* Menü alt çizgi animasyonu */
.menu a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -6px;
  background-color: #000000;
  transition: width 0.3s ease;
  border-radius: 2px;
}

.menu a:hover {
  color: #000000;
}

.menu a:hover::after {
  width: 100%;
}

/* Mobil Menü */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  user-select: none;
}

@media (max-width: 768px) {
  header {
    width: calc(100% - 40px);
    left: 20px;
    top: 20px;
    border-radius: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
  }

  .menu {
    display: none;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    top: 64px;
    right: 20px;
    background-color: white;
    padding: 15px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    width: 200px;
  }

  .menu.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  /* Mobilde menü linkleri margin */
  .menu a {
    margin: 6px 0;
  }
}

/* Ürünler bölümü */
section#urunler {
  padding: 60px 20px 80px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
	padding-top: 150px;
	margin-top: -70px;
}

section#urunler h2 {
  margin-bottom: 40px;
  font-weight: 700;
  font-size: 2rem;
}

.urunler {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  padding: 20px 0;
}

.urun {
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 280px;
  transition: transform 0.2s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* SAĞ ÜST İNDİRİM */
.urun .etiket {
  position: absolute;
  top: 10px;
  right: 10px;
  background: red;
  color: white;
  font-size: 14px;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 2;
  pointer-events: none;
}
.etiket {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #e53935;
  color: white;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 5px;
  z-index: 1;
}

.urun {
  position: relative;
  text-align: center;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border-radius: 10px;
  background-color: #fff;
}

.eski-fiyat {
  text-decoration: line-through;
  color: #888;
  margin-right: 8px;
  font-weight: normal;
}

.yeni-fiyat {
  color: #e53935;
  font-weight: bold;
  font-size: 18px;
}


/* SAĞ ALT KAYAN TESLİMAT */
.teslim-etiket {
  margin-top: 8px; /* 🔴 Ekle: Butonla arasına boşluk */
  background-color: #ff6600;
  color: white;
  width: 100%;
  height: 22px;
  overflow: hidden;
  white-space: nowrap;
  font-size: 12px;
  font-weight: bold;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  padding: 2px 8px;
  text-align: left; /* 🔴 Ekle: Yazı sola yaslansın */
}


.urun .teslim-etiket span {
  display: inline-block;
  padding-left: 100%;
  animation: kaydir 6s linear infinite;
}

@keyframes kaydir {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}



@keyframes fadeInMoveUp {
  0% {
    opacity: 0;
    margin-top: 20px;
  }
  100% {
    opacity: 1;
    margin-top: 0;
  }
}

.urun {
  animation: fadeInMoveUp 0.5s ease forwards;
  transition: transform 0.3s ease;
}

.urun:hover {
  transform: scale(1.05);
  z-index: 10;
}


.urun img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.urun h3 {
  margin: 15px 0 10px;
  font-weight: 600;
}

.btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 15px;
  background-color: #25d366;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #1ebe5d;
}


.diger-site-linki {
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
  background: #f0f0f0;
  padding: 10px;
  border-radius: 8px;
  width: 90%;
  max-width: 700px;
  margin-inline: auto;
}

.diger-site-linki a {
  color: orange;
  font-weight: bold;
  text-decoration: none;
}

.diger-site-linki a:hover {
   color: orange;
  border-bottom: 2px solid orange;
}




/* İletişim */
section#iletisim {
  padding: 60px 20px 80px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
	padding-top: 190px;
}

section#iletisim h2 {
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 2rem;
}

.iletisim-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
  align-items: flex-start;
}

.iletisim-container .sosyal,
.iletisim-container .harita {
  flex: 1 1 100%;
  max-width: 100%;
  text-align: center;
}

@media (min-width: 768px) {
  .iletisim-container .sosyal {
    flex: 1 1 30%;
    max-width: 30%;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Solda hizala */
    gap: 2px;
    text-align: left;
  }

  .iletisim-container .harita {
    flex: 1 1 65%;
    max-width: 65%;
  }
}

/* Sosyal ikonlar */
.iletisim-container .sosyal p {
  display: none;
}

.iletisim-container .sosyal {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .iletisim-container .sosyal {
    flex-direction: column;
    justify-content: space-between;
  }
}

.iletisim-container .sosyal a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f0f0f0;
  width: 70px;
  height: 70px;
  border-radius: 14px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  color: #333;
  font-size: 32px;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

.iletisim-container .sosyal a:hover {
  background-color: #000000;
  color: white;
  box-shadow: 0 8px 15px rgba(0, 123, 255, 0.5);
  transform: scale(1.15);
}
.iletisim-container .sosyal a:hover {
  transform: scale(1.1) rotate(360deg);
  transition: all 1s ease;
}


.iletisim-container .sosyal a:hover i.fa-instagram {
  color: #E1306C; /* Instagram pembe */
}

.iletisim-container .sosyal a:hover i.fa-whatsapp {
  color: #25D366; /* WhatsApp yeşili */
}

.iletisim-container .sosyal a:hover i.fa-facebook {
  color: #1877F2; /* Facebook mavi */
}

/* Harita iframe */
.iletisim-container .harita iframe {
  width: 100%;
  height: 300px; /* Küçültüldü */
  border: none;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Mobilde sosyal kutucuklar küçülür ve ortalanır */
@media (max-width: 768px) {
  .iletisim-container .sosyal {
    justify-content: center;
    flex-direction: row;
  }

  .iletisim-container .sosyal a {
    width: 55px;
    height: 55px;
    font-size: 28px;
  }
}
html {
  scroll-behavior: smooth;
}
#top { height: 0; margin: 0; padding: 0; }

/* Men� tiklamada i�erik yukari yapismasin */
section {
  scroll-margin-top: 100px;
}


/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #f4f4f4;
  color: #666;
}
footer a {
  color: orange;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

footer a:hover {
  color: orange;
  border-bottom: 2px solid orange;
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
	text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #128c7e;
}

#urunler,
#iletisim {
  scroll-margin-top: 140px; /* Men� y�ksekligi kadar */
	
}
 .logo-kutu-sabit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #f9f9f9;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 12px;
  width: 140px;
  margin: 0px;
  transition: transform 0.3s ease;
	 margin-top: -10px;
	 margin-bottom: -150px;
}

.logo-kutu-sabit img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.logo-kutu-sabit:hover {
  transform: scale(1.05);
}

/* Logoları yanyana dizmek için kapsayıcı */
.logolar-container {
  display: flex;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  flex-wrap: wrap;
  gap: 20px;
}

/* Mobilde ortala ve küçült */
@media (max-width: 768px) {
  .logolar-container {
    justify-content: center;
  }

  .logo-kutu-sabit {
    width: 120px;
  }
}

