
        .story-container {
            display: flex;
            overflow-x: hidden; /* Kaydırma çubuğunu gizle */
            white-space: nowrap;
            padding: 20px;
        }
        
        .story {
            flex: 0 0 auto;
            margin: 0 10px; /* Hikayeler arası boşluk */
            text-align: center;
            position: relative;
        }
        
        .story img {
            width: 90px; /* Boyutları biraz büyüttük */
            height: 90px;
            border-radius: 15%; /* Yuvarlak şekil */
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Gölgelendirme */
            transition: transform 0.3s, box-shadow 0.2s; /* Geçiş efektleri */
        }
        
        .story img:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* Hover efektinde gölgeyi artırdık */
        }
        
        
        /* Medya Sorguları */
        @media (min-width: 768px) {
            .story {
                width: calc(100% / 8); /* Masaüstü için 8 gözükmesini sağlıyoruz */
            }
        }
        
        @media (max-width: 767px) {
            .story {
                width: calc(100% / 4); /* Mobil için 5 gözükmesini sağlıyoruz */
            }
        }
        .hand {
            font-size: 40px; /* El işaretinin boyutu */
            color: #ed430f; /* El işaretinin rengi */
            animation: bounceyatay 1s infinite; /* Zıplama animasyonu */
            transform: rotate(90deg); /* Elin yatay konuma getirilmesi */
            margin-right:45px;
        }

        @keyframes bounceyatay {
            0%, 100% {
                transform: translateX(0) rotate(90deg); /* Başlangıç ve bitiş noktası */
            }
            50% {
                transform: translateX(20px) rotate(90deg); /* Sağ tarafa zıplama */
            }
        }
        
        @media (min-width: 768px) {
            #modalvitrinfoto {
                height: 600px; 
                object-fit: cover;
            }
        }
        @media (max-width: 768px) {
            #modalvitrinfoto {
                height: 300px; 
                object-fit: cover;
            }
        }
        
        .marquee-container {
            overflow: hidden;
            background: #000000;
            color: #ffffff;
            position: relative;
            overflow-x: hidden;
            width: 100%;
        }
        
        .marquee {
            display: inline-block;
            white-space: nowrap;
            padding-left: 100%; /* Start point */
            animation: marquee 20s linear infinite;
        }

        .marquee-content {
            display: inline-block;
            white-space: nowrap;
            animation: marquee 15s linear infinite;
        }
        
        .marquee-content p {
            margin: 0;
            padding: 0;
        }
        
        @keyframes marquee {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }
        .discount-label {
  display: block; /* inline-block değil — tam satır */
  width: 100%; /* %100 genişlik */
  background-color: #ff0000; /* Güzel bir kırmızı */
  color: #fff;
  font-size: 13px; /* biraz büyütelim */
  font-weight: bold;
  padding: 12px 0; /* üst-alt dengeli padding */
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  text-align: center;
  letter-spacing: 1px;
  border-radius: 8px; /* köşeleri yumuşatalım */
  cursor: pointer; /* buton havası */
  text-transform: uppercase; /* yazıyı büyük harf */
}
.product-card {
  position: relative;
  overflow: hidden;
}
.overlay-image {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 60px; /* isteğe göre boyut ayarla */
  height: auto;
  z-index: 10;
}
.size-overlay {
  position: absolute;
  bottom: -100%; /* Başlangıçta görünmesin */
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px 0;
  text-align: center;
  transition: bottom 0.3s ease-in-out;
}

.product-card:hover .size-overlay {
  bottom: 0; /* Üzerine gelince yukarı çıksın */
}

.sizes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  padding: 5px;
  justify-items: center;
}

.sizes span {
  background: #ed430f;
  color: #fff;
  padding: 5px 5px;
  border-radius: 5px;
  font-size: 8px;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  width: 100%;
}

.sizes span:hover {
  background: #c0392b; /* Üzerine gelince koyulaşsın */
}

.price-box {
  border-radius: 8px;
  text-align: center; /* ORTALIYOR */
  font-family: Arial, sans-serif;
}

.discount-badge {
  background-color: #ff8b40;
  color: #fff;
  padding: 6px 6px;
  border-radius: 8px;
  display: inline-block;
  font-size: 10px;
  font-weight: bold;
}

.price-info .old-price {
  color: #999;
  text-decoration: line-through;
  font-size: 16px;
  margin-bottom: 4px;
}

.price-info .new-price {
  color: #111;
  font-weight: bold;
  font-size: 22px;
}

.price-info .kampanyali-price {
  color: #111;
  font-weight: bold;
  font-size: 14px;
}

@media (min-width: 768px) {
            .color-circle {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}
        }
        @media (max-width: 768px) {
            .color-circle {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}
        }
        
        
/* Tooltip kutusu */
.color-circle .tooltip {
  visibility: hidden;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 4px 6px;
  border-radius: 4px;
  position: absolute;
  z-index: 1;
  bottom: 125%; /* Yukarıda gözüksün */
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.05s;
  white-space: nowrap;
  font-size: 11px;
}

/* Tooltip oku */
.color-circle .tooltip::after {
  content: "";
  position: absolute;
  top: 100%; /* Kutunun altında */
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: black transparent transparent transparent;
}

/* Hover olunca göster */
.color-circle:hover .tooltip {
  visibility: visible;
  opacity: 1;
}
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@600&display=swap');

.popup-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-content {
    background: linear-gradient(180deg, #FFA500, #FF4500);
    border-radius: 30px;
    padding: 25px 20px;
    text-align: center;
    width: 320px;
    position: relative;
    color: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    font-family: 'Fredoka', sans-serif;
}

/* Emoji alanı */
.popup-icons {
    margin-top: -50px;
    margin-bottom: 5px;
    font-size: 40px;
}

/* Başlık */
.popup-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

/* Buton */
.popup-button {
    background: linear-gradient(90deg, #FFD200, #FF7F00);
    border: none;
    padding: 14px 25px;
    color: white;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: transform 0.2s ease;
}
.popup-button:hover {
    transform: scale(1.05);
}

/* Alt açıklama */
.popup-desc {
    margin-top: 20px;
    font-size: 13px;
    color: #fff;
    opacity: 0.9;
}

/* X kapatma butonu */
.popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: transparent;
    color: #FF4500;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    font-size: 18px;
    border: none;
    cursor: pointer;
}
/* Popup arkaplan (grileştirme) */
    .modal-overlay {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.5);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 999;
    }

    /* Popup kutusu */
    .modal {
      background: #fff;
      border-radius: 15px;
      width: 320px;
      padding: 20px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.3);
      position: relative;
    }

    .scratch {
      width: 100%;
      height: 150px;
      background: #d1d1d1;
      position: relative;
      border-radius: 10px;
      margin-bottom: 15px;
      cursor: pointer;
      overflow: hidden;
      transition: background 0.6s ease;
    }

    .result {
      font-size: 20px;
      font-weight: bold;
      color: #ff416c;
      display: none;
      opacity: 0;
      transition: opacity 0.5s ease, transform 0.5s ease;
      transform: translateY(50px);
      text-align: center;
    }

    .button {
      padding: 12px 25px;
      font-size: 16px;
      background: #396afc;
      color: #fff;
      border: none;
      border-radius: 50px;
      cursor: pointer;
      transition: background 0.3s ease;
      width: 100%;
    }

    .button:hover {
      background: #1d76d1;
    }

    .open-popup-btn {
      padding: 15px 30px;
      font-size: 18px;
      background: #28a745;
      color: #fff;
      border: none;
      border-radius: 50px;
      cursor: pointer;
      transition: background 0.3s ease;
      margin: 100px auto;
      display: block;
    }

    .open-popup-btn:hover {
      background: #218838;
    }
    #hizlialModal{
    background-color: rgba(0, 0, 0, 0.5); /* %50 karartma */
  }
    