/* Genel ayarlar */
body {
  background-color: #1e1e1e;
  color: white;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

header, footer {
  background-color: #2b2b2b;
  text-align: center;
  padding: 20px;
}

nav a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
  cursor: pointer;
}

/* Sayfa yapısı */
main {
  padding: 20px;
}

.page {
  display: none;
}

.page.active {
  display: block;
}

/* Görsel alanlar */
.image-side {
  display: inline-block;
  width: 25%;
  text-align: center;
}

.center-content {
  display: inline-block;
  width: 45%;
  text-align: center;
  vertical-align: top;
}

/* Kadın görselleri */
.woman-left, .woman-right {
  width: 100%;
  max-width: 200px;
  border-radius: 10px;
}

/* CTA buton */
.cta-button {
  background-color: #ff4081;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  margin-top: 10px;
}

/* Ürün kartları */
.product-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px 0;
}

.product {
  background-color: #2a2a2a;
  border-radius: 10px;
  padding: 20px;
  color: white;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  transition: transform 0.2s ease;
  width: 100%;
  max-width: 300px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product:hover {
  transform: scale(1.03);
}

.product h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.product p {
  margin: 8px 0;
}

.product .price {
  font-weight: bold;
  font-size: 1.1em;
  color: #ffcc00;
  margin-top: auto;
}

/* Galeri */
.gallery {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.gallery img {
  width: 100%;
  max-width: 180px;
  border-radius: 10px;
  margin: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.gallery img:hover {
  transform: scale(1.05);
}

/* Geri bildirim butonu */
.feedback-button {
  text-align: center;
  margin: 20px 0;
}
.feedback-button a {
  background-color: #e91e63;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  display: inline-block;
  transition: background-color 0.3s ease;
}
.feedback-button a:hover {
  background-color: #c2185b;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 99;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}
.modal-content {
  background-color: #1e1e1e;
  padding: 20px;
  border-radius: 12px;
  color: #fff;
  max-width: 90%;
  font-size: 16px;
  text-align: center;
  position: relative;
}
.close {
  position: absolute;
  top: 8px;
  right: 14px;
  font-size: 22px;
  cursor: pointer;
  color: #fff;
}

/* Logo */
.logo-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
}
.logo {
  height: 70px;
  filter: drop-shadow(0 0 3px gold);
  opacity: 0.85;
}

/* İmza logosu */
.signature-logo {
  position: fixed;
  bottom: 15px;
  right: 15px;
  opacity: 0.4;
  z-index: 99;
}
.signature-logo img {
  width: 60px;
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
  header h1 {
    font-size: 2em;
  }
  header p {
    font-size: 0.9em;
  }
  nav {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  nav a {
    display: block;
    margin: 5px 0;
    padding: 5px;
  }
  #home {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .image-side {
    width: 80%;
    margin-bottom: 20px;
  }
  .center-content {
    width: 90%;
    text-align: center;
  }
  .woman-left, .woman-right {
    max-width: 250px;
  }
  .product {
    width: 90%;
    max-width: 100%;
  }
  .gallery img {
    width: 90%;
    max-width: 300px;
    margin-bottom: 10px;
  }
  main section p,
  main section ul {
    padding: 0 10px;
    text-align: left !important;
  }
  .care-list li {
    margin-bottom: 10px;
  }
  #iletisim a {
    display: block;
    margin-bottom: 5px;
  }
  footer {
    padding: 15px;
    font-size: 0.8em;
  }
  .logo {
    height: 45px;
  }
  .signature-logo img {
    width: 45px;
  }
}

.video-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Masaüstü: Videoyu yukarı kaydır */
@media screen and (min-width: 769px) {
  .video-banner {
    top: -30px;
  }
}

/* Mobil görünüm: Videoyu sabit tut */
@media screen and (max-width: 768px) {
  .video-banner {
    top: 0; /* yukarı çekilmesin */
    margin-top: 10px;
    margin-bottom: -10px;
  }

  .video-banner video {
    width: 90%;
    max-width: 320px;
  }
}

@media screen and (max-width: 768px) {
  .video-banner video {
    width: 90%;       /* mobilde tam oturur */
    max-width: 320px; /* fazla büyümesin */
  }
}
.video-banner video {
  width: 300px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 105, 180, 0.3);
}
.dnote-container {
  background-color: rgba(255, 255, 255, 0.03);
  color: #fffaf0;
  padding: 20px;
  margin-top: 40px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-family: 'Segoe UI', sans-serif;
}

.dnote-quote {
  font-size: 16px;
  font-style: italic;
  margin-bottom: 8px;
}

.dnote-sign {
  font-size: 14px;
  font-weight: 300;
  color: #ffc0cb;
}
.faq-section {
  margin: 40px auto;
  padding: 20px;
  text-align: center;
}

.faq-toggle {
  background-color: #ffc0cb;
  color: #2a2a2a;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(255, 192, 203, 0.3);
  transition: all 0.3s ease;
}

.faq-toggle:hover {
  background-color: #ff95b3;
}

.faq-box {
  display: none;
  margin-top: 20px;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 20px;
  color: #fffaf0;
  box-shadow: 0 0 10px rgba(255, 192, 203, 0.1);
}

.faq-item h4 {
  margin-bottom: 5px;
  color: #ffc0cb;
  font-size: 16px;
}

.faq-item p {
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.6;
}
.style-options {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.style-options label {
  background: #2a2a2a;
  padding: 10px 15px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.style-options input {
  margin-right: 8px;
}

.style-options label:hover {
  background-color: #444;
}

#style-feedback {
  color: #ffccff;
}
.whatsapp-button {
  background-color: #25D366;
  color: white;
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
  transition: background 0.3s;
}

.whatsapp-button:hover {
  background-color: #1ebe5d;
}
.astro-section {
  padding: 60px 20px;
  background: #1e1e1e;
  color: #fff;
  text-align: center;
}

.astro-intro {
  margin-top: 10px;
  font-size: 16px;
  color: #ccc;
}

.astro-container {
  margin-top: 20px;
}

#burc-select {
  padding: 10px 16px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #aaa;
  background-color: #2a2a2a;
  color: #fff;
}

.astro-result {
  margin-top: 20px;
  font-size: 18px;
  color: #ffccff;
}

.whatsapp-button {
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #25d366;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
  transition: background 0.3s;
}

.whatsapp-button:hover {
  background-color: #1da851;
}
/* Elime Uygula Bölümü */
#elime-uygula {
  padding: 40px 20px;
  background-color: #1e1e1e;
  color: #fff;
}

/* Ana konteyner */
.elime-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* El ve tırnaklar için görsel alan */
.el-gorsel {
  position: relative;
  width: 280px;
  max-width: 100%;
}

.el-gorsel img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 1;
  visibility: visible;
}

/* Tırnak noktaları (renk uygulama) */
.nail {
  position: absolute;
  width: 28px;
  height: 18px;
  border-radius: 50%;
  background-color: transparent;
  transition: background-color 0.3s ease;
  z-index: 10;
}

/* Yeni görsele göre ayarlanmış tırnak konumları */
#nail1 { top: 120px; left: 32px; }   /* Başparmak */
#nail2 { top: 70px;  left: 75px; }   /* İşaret parmak */
#nail3 { top: 48px;  left: 120px; }  /* Orta parmak */
#nail4 { top: 65px;  left: 175px; }  /* Yüzük parmak */
#nail5 { top: 110px; left: 220px; }  /* Serçe parmak */

/* Renk seçeneklerinin bulunduğu panel */
.renk-paneli {
  display: grid;
  grid-template-columns: repeat(4, 40px);
  gap: 12px;
  justify-content: center;
  align-content: center;
}

/* Renk kutucukları */
.renk-secenek {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid white;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.renk-secenek:hover {
  transform: scale(1.2);
}

/* Seçilen rengin adı ve açıklaması */
.renk-bilgi {
  margin-top: 30px;
  text-align: center;
}

/* WhatsApp butonları grubu */
.wp-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}

/* Tekli WhatsApp butonu */
.wp-btn {
  background-color: #25D366;
  color: white;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  white-space: nowrap;
}

.wp-btn:hover {
  background-color: #1ebe5d;
  transform: translateY(-1px);
}

/* Mobil Uyum */
/* Mobil uyum için */
@media (max-width: 768px) {
  .wp-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
.wp-btn {
    width: 90%;
    justify-content: center;
    font-size: 16px;
  }
}
  .el-gorsel {
    width: 90%;
    max-width: 280px;
  }

  .el-gorsel img {
    display: block;
    width: 100%;
    height: auto;
  }

  .renk-paneli {
    margin-top: 20px;
  }

  .nail {
    transform: scale(1.1); /* mobilde tırnakları biraz büyüt */
  }
  
#suggestion-output {
  text-align: center;
}
#eliara-toggle {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #f7c9e3;
  color: #6b0848;
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  cursor: pointer;
  z-index: 1000;
}

#eliara-chatbox {
  display: none;
  flex-direction: column;
  position: fixed;
  bottom: 70px;
  left: 20px;
  width: 300px;
  max-height: 420px;
  background: #1e1e1e;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  padding: 10px;
  z-index: 1001;
  overflow: hidden;
}

#eliara-messages {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  max-height: 300px;
  font-size: 14px;
}

.eliara-user {
  background-color: #8000ff;
  color: white;
  align-self: flex-end;
  margin: 4px 0;
  padding: 8px 12px;
  border-radius: 15px 15px 0 15px;
  max-width: 75%;
  font-weight: bold;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  word-break: break-word;
}

.eliara-bot {
  background-color: #444;
  color: #f1f1f1;
  align-self: flex-start;
  margin: 4px 0;
  padding: 8px 12px;
  border-radius: 15px 15px 15px 0;
  max-width: 75%;
  font-style: italic;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  word-break: break-word;
}

#eliara-input {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

#eliara-input input {
  flex: 1;
  padding: 8px;
  border-radius: 5px;
  border: none;
  font-size: 14px;
}

#eliara-input button {
  padding: 8px 14px;
  background-color: #8000ff;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

/* Mobil görünüm */
@media (max-width: 768px) {
  #eliara-chatbox {
    width: 90vw;
    bottom: 90px;
  }

  #eliara-messages {
    max-height: 220px;
  }

  #eliara-input input {
    font-size: 13px;
  }
}
.kampanya-section {
  padding: 40px 20px;
  text-align: center;
  background-color: #fef6fa;
}

.kampanya-box {
  max-width: 600px;
  margin: 0 auto;
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  word-break: break-word;
  overflow-wrap: break-word;
}

.kampanya-box p {
  font-size: 18px;
  line-height: 1.6;
  color: #6b0848;
  margin-bottom: 20px;
}

.kampanya-button {
  display: inline-block;
  background-color: #f7c9e3;
  color: #6b0848;
  font-weight: bold;
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.kampanya-button:hover {
  background-color: #f4a9cb;
}
#music-section {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  padding: 8px 12px;
  border-radius: 20px;
  box-shadow: 0 0 12px rgba(255, 105, 180, 0.3);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 1000;
}

#music-header-bar {
  background: transparent;
  padding: 10px 0;
  text-align: center;
}

#music-header-bar select {
  padding: 6px 12px;
  border-radius: 20px;
  border: none;
  background-color: #111;
  color: white;
  font-size: 14px;
  height: 34px;
  line-height: 34px;
}
#music-player {
  height: 34px;
  border-radius: 20px;
  background-color: #222;
  outline: none;
}

#music-header-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  flex-wrap: wrap;
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
  #music-header-bar {
    flex-direction: column;
  }

  #music-header-bar select,
  #music-player {
    width: 90%;
    max-width: 300px;
  }
}
.stiloner-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
}

.stil-button {
  padding: 10px 16px;
  border: none;
  border-radius: 20px;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: all 0.2s ease;
}

.stil-button:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.info-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 15px 20px;
  margin-top: 30px;
  border-left: 4px solid #ffcc00;
  color: #f1f1f1;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.6;
}
.info-box h3 {
  color: #ffcc00;
  font-size: 16px;
  margin-bottom: 8px;
}
.kampanya-banner {
  background: linear-gradient(45deg, #ff4081, #ffc0cb);
  color: #fff;
  text-align: center;
  padding: 18px 12px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: bold;
  margin: 20px auto;
  max-width: 90%;
  box-shadow: 0 0 10px rgba(255, 64, 129, 0.6);
  animation: flash 1s infinite;
  transition: all 0.3s ease;
}
@keyframes flash {
  0% { opacity: 1; }
  50% { opacity: 0.4; }
  100% { opacity: 1; }
}
