/* ======================
   RESET VE GENEL AYARLAR
====================== */
@font-face {
    font-family: 'Satoshi';
    src: url('/fonts/Satoshi-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi';
    src: url('/fonts/Satoshi-Italic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Satoshi';
    src: url('/fonts/Satoshi-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi';
    src: url('/fonts/Satoshi-MediumItalic.otf') format('opentype');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Satoshi';
    src: url('/fonts/Satoshi-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi';
    src: url('/fonts/Satoshi-BoldItalic.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Satoshi';
    src: url('/fonts/Satoshi-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi';
    src: url('/fonts/Satoshi-BlackItalic.otf') format('opentype');
    font-weight: 900;
    font-style: italic;
}

@font-face {
    font-family: 'Satoshi';
    src: url('/fonts/Satoshi-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi';
    src: url('/fonts/Satoshi-LightItalic.otf') format('opentype');
    font-weight: 300;
    font-style: italic;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* 
     BODY
     - Responsive genişlik
     - Masaüstü için sabit 4190px yükseklik
     - Mobil için sabit 1915px yükseklik
  */
  body {
    width: 100%;               /* Genişlik ekranın tamamını kaplar */
   /*  height: 4190px;   /*           /* Masaüstü sabit yükseklik */
    background: #FFF;          /* Beyaz arka plan */
    font-family: 'Satoshi', sans-serif;
    color: #333;
    line-height: 1.6;
  }
  
  @media (max-width: 767px) {
    body {
      height: 1915px;          /* Mobil sabit yükseklik */
    }
  }
  /* Pop-up Mesaj Stilleri */
.popup-message {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #1e1e1e;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  opacity: 0;
  animation: popup-fade-in-out 3s forwards;
  z-index: 1000;
}

/* Pop-up Animasyonu */
@keyframes popup-fade-in-out {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  10% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  90% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
}

  /* ======================
     PROMO BAR (En Üst Bilgilendirme)
  ====================== */
  .promo-bar {
    width: 100%;               /* Genişlik tamamen ekranı kaplar */
    min-height: 38px;          /* Bar yüksekliği */
    background-color: #000;    /* Siyah arka plan */
    
    display: flex;
    justify-content: center;
    align-items: center;
  
    position: relative;        /* Çarpı konumlandırması için gerekli */
    box-sizing: border-box;
  
    /* Kapanma animasyonu için başlangıç durumu */
    opacity: 1;
    transition: opacity 0.5s ease, transform 0.5s ease; /* Yumuşak geçiş */
  }
  
  /* Promo bar kapanma animasyonu */
  .promo-bar.hidden {
    opacity: 0;               /* Görünmez yap */
    transform: translateY(-20px); /* Yukarı kaydır */
    pointer-events: none;     /* Kullanıcı tıklamasını engelle */
  }
  
  /* Promo metin */
  .promo-text {
    display: flex;
    gap: 5px;                 /* "Sepetinizdeki..." ve "%20 indirim" arasında boşluk */
    margin: 0;
  }
  
  .normal-text {
    color: #FFF;              /* Beyaz yazı rengi */
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
  }
  
  .underline-text {
    color: #FFF;              /* Beyaz yazı rengi */
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    text-decoration: underline;
  }
  
  /* Kapatma Butonu */
  .promo-close-btn {
    background: none;
    border: none;
    cursor: pointer;
  
    position: absolute;
    right: 100px;            /* Ekranın sağından 100px uzaklık */
    width: 20px;
    height: 20px;
  
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  
  /* Hover durumu (isteğe bağlı) */
  .promo-close-btn:hover svg path {
    fill: #999;              /* Üzerine gelindiğinde gri renk */
  }
  
  /* Mobilde kapatma butonu gizlenir */
  @media (max-width: 767px) {
    .promo-close-btn {
      display: none;
    }
    .normal-text,
    .underline-text {
      font-size: 12px;        /* Mobilde yazı boyutu küçülür */
    }
  }
  
