    /* Responsive Social Media Icons */
    .footer-social-icons {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      align-items: center;
      justify-content: flex-start;
      padding: 10px;
    }
    
    .footer-social-icons .social-icon {
      display: inline-block;
      transition: transform 0.3s ease;
    }
    
    .footer-social-icons .social-icon:hover {
      transform: scale(2);
    }
    
    .footer-social-icons .social-icon img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    
    /* Mobile responsive - küçük ekranlarda daha da küçült */
    @media (max-width: 768px) {
      .footer-social-icons .social-icon img {
        width: 35px;
        height: auto;
      }
    }
    
    /* Çok küçük ekranlar için */
    @media (max-width: 480px) {
      .footer-social-icons {
        gap: 5px;
        padding: 5px;
      }
      
      .footer-social-icons .social-icon img {
        width: 30px;
        height: auto;
      }
    }
	
	/* SOURCE: black-trumpet.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  background: #0a0a0a;
  color: white;
}
/* Video Background */
.video-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: opacity 1s ease;
}
@media (max-width: 768px) {
  .video-bg {
    display: none;
  }
  .desktop-only {
    display: none !important;
  }
}
/* Gradient Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(20, 20, 20, 0.75) 50%, rgba(10, 10, 10, 0.85) 100%);
  z-index: 2;
}
/* Main Container */
.page-container {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  padding-bottom: 5rem; /* Space for footer icons */
}

/* Breadcrumb */
.breadcrumb-container {
  position: fixed;
  top: 2rem;
  left: 2rem;
  z-index: 100;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  animation: fadeIn 1s ease;
}
.breadcrumb-item {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}
.breadcrumb-item:hover {
  color: white;
}
.breadcrumb-separator {
  margin: 0 0.5rem;
}
.breadcrumb-current {
  color: rgba(255, 255, 255, 0.4);
}

/* Logo & Slogan */
.logo-top-right {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 100;
  animation: fadeIn 1s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.2rem;
}
.logo-top-right img {
  max-width: 150px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
  transition: transform 0.3s ease;
}
.logo-slogan {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  white-space: nowrap;
}

/* Language Selection (Sağ Alt) */
.social-toggle {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 100;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.social-icons-container {
  position: fixed;
  bottom: 5.5rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.social-icons-container.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.social-icon-btn {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

/* Page Header */
.page-header {
  padding: 2rem;
  text-align: center;
  animation: fadeInDown 0.8s ease;
}
.page-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-top: 1rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.page-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.5rem;
}

/* Main Content Grid */
.main-content {
  max-width: 1600px;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 3rem;
  min-height: 600px;
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: fadeInLeft 0.8s ease 0.4s both;
}
.nav-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}
.nav-item:hover, .nav-item.active {
  transform: translateX(10px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.nav-icon {
  font-size: 2rem;
}
.nav-title {
  font-size: 1rem;
  font-weight: 600;
  color: white;
}
.satin-al-nav {
  margin-top: 1rem;
  background: rgba(192, 57, 43, 0.2);
  border-color: rgba(192, 57, 43, 0.4);
}
.satin-al-nav:hover, .satin-al-nav.active {
  background: rgba(192, 57, 43, 0.4);
  border-color: rgba(192, 57, 43, 0.6);
}

/* Content Area */
.content-area {
  position: relative;
  min-height: 600px;
  animation: fadeInRight 0.8s ease 0.4s both;
}
.content-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 3rem;
  backdrop-filter: blur(10px);
  max-height: 80vh;
  overflow-y: auto;
}
.content-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

/* INTRO SLIDE */
#intro-slide {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem;
}
.intro-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.intro-text-section {
  line-height: 1.8;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}
.intro-text-section p {
  margin-bottom: 1.5rem;
}
.intro-image-inline {
  float: right;
  max-width: 300px;
  margin-left: 2rem;
  margin-bottom: 1rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Nutrition Table */
.nutrition-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
}
.nutrition-table th, .nutrition-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.highlight-box {
  background: linear-gradient(135deg, #C0392B 0%, #E74C3C 100%);
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 1rem;
}

/* Benefit Grid & Cards */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.benefit-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.benefit-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-5px);
}
.benefit-card img {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
  border-radius: 10px;
}
.benefit-card h4 {
  color: #E74C3C;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.wiki-link {
  font-size: 1.2rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}
.wiki-link:hover {
  color: white;
}

/* FAQ Accordion */
.faq-accordion {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.faq-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  overflow: hidden;
}
.faq-question {
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}
.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}
.faq-item.active .faq-answer {
  padding: 1rem 1.5rem 1.5rem;
  max-height: 200px;
}

/* Footer Social Icons (Sol Alt) */
.footer-social-icons {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  display: flex;
  gap: 1rem;
  z-index: 100;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.8rem 1.2rem;
  border-radius: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.social-icon {
  font-size: 1.2rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.social-icon:hover {
  transform: scale(1.2);
}

.kaynakca-section {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.kaynakca-section h3 {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}
.kaynakca-list {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  list-style: none;
}
.kaynakca-list li {
  margin-bottom: 0.5rem;
}

/* Animations */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }

/* Responsive */
@media (max-width: 1200px) {
  .main-content { 
    grid-template-columns: 1fr; 
    gap: 2rem; 
    max-width: 900px;
  }
  .nav-menu {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .nav-item {
    flex: 1 1 200px;
    justify-content: center;
  }
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .breadcrumb-container { 
    position: relative;
    top: 0;
    left: 0;
    padding: 1rem;
    text-align: center;
  }
  .logo-top-right { 
    position: relative;
    top: 0;
    right: 0;
    align-items: center;
    padding: 1rem;
  }
  .logo-top-right img { max-width: 120px; }
  .page-title { font-size: 1.8rem; margin-top: 0.5rem; }
  
  .main-content { 
    padding: 1rem; 
    display: flex;
    flex-direction: column;
  }
  
  .nav-menu {
    order: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  
  .nav-item {
    padding: 0.8rem;
    flex-direction: column;
    text-align: center;
    gap: 0.3rem;
  }
  
  .nav-icon { font-size: 1.5rem; }
  .nav-title { font-size: 0.8rem; }
  
  .content-area {
    order: 2;
    margin-top: 1.5rem;
  }
  
  .content-slide { 
    padding: 1.2rem; 
    max-height: none; 
    overflow-y: visible;
    position: relative;
    opacity: 1;
    visibility: visible;
    display: none;
  }
  
  .content-slide.active {
    display: block;
  }
  
  .intro-image-inline { 
    float: none; 
    margin: 0 auto 1.5rem; 
    display: block; 
    max-width: 100%;
  }
  
  .nutrition-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  
  .benefit-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-social-icons { 
    position: relative;
    bottom: 0;
    left: 0;
    margin: 2rem auto;
    justify-content: center;
    width: fit-content;
  }
  
  .social-toggle {
    bottom: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .social-icons-container {
    bottom: 4.5rem;
    right: 1rem;
  }
}

@media (max-width: 480px) {
  .nav-menu {
    grid-template-columns: 1fr;
  }
}



.info-text {
  position: fixed;
  bottom: 2rem;
  right: 6rem;
  max-width: 250px;
  text-align: right;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  line-height: 1.5;
  z-index: 98;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  backdrop-filter: blur(5px);
}

@media (max-width: 768px) {
  .info-text {
    bottom: 8rem;
    right: 1.5rem;
    max-width: 200px;
    font-size: 0.75rem;
  }
}


/* Satın Al Layout */
.satin-al-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  height: 70vh;
  padding: 2rem;
}

.product-image-link {
  flex: 0 0 45%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image {
  max-width: 100%;
  max-height: 60vh;
  object-fit: contain;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.5));
  transition: transform 0.3s ease;
}

.product-image:hover {
  transform: scale(1.05);
}

/* Scrolling Text Container */
.scrolling-text-container {
  flex: 0 0 50%;
  height: 70vh;
  overflow-y: auto;
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  backdrop-filter: blur(5px);
}

.scrolling-text-content {
  animation: scrollUp 60s linear infinite;
  animation-play-state: paused;
    padding-bottom: 100%;
}

.scrolling-text-content.paused {
  }

.scrolling-text-content h3 {
  font-size: 1.5rem;
  color: #E74C3C;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.scrolling-text-content h4 {
  font-size: 1.2rem;
  color: #E74C3C;
  margin: 2rem 0 1rem;
  font-weight: 600;
}

.scrolling-text-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
  text-align: justify;
}

.scrolling-text-content.animate {
  animation-play-state: running !important;
}


/* Custom Scrollbar for scrolling text */
.scrolling-text-container::-webkit-scrollbar {
  width: 8px;
}

.scrolling-text-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.scrolling-text-container::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

.scrolling-text-container::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

.scrolling-text-container {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) rgba(255, 255, 255, 0.05);
}

@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}

/* Mobile/Tablet Responsive */
@media (max-width: 1024px) {
  .satin-al-wrapper {
    flex-direction: column;
    height: auto;
    gap: 2rem;
  }
  
  .product-image-link,
  .scrolling-text-container {
    flex: 1 1 100%;
  }
  
  .scrolling-text-container {
    height: 50vh;
  }
}

@media (max-width: 768px) {
  .scrolling-text-container {
    height: 40vh;
    padding: 1.5rem;
  }
  
  .scrolling-text-content h3 {
    font-size: 1.2rem;
  }
  
  .scrolling-text-content h4 {
    font-size: 1rem;
  }
  
  .scrolling-text-content p {
    font-size: 0.9rem;
  }
}

/* SOURCE: chanterelle.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  background: #0a0a0a;
  color: white;
}
/* Video Background */
.video-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: opacity 1s ease;
}
@media (max-width: 768px) {
  .video-bg {
    display: none;
  }
  .desktop-only {
    display: none !important;
  }
}
/* Gradient Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(20, 20, 20, 0.75) 50%, rgba(10, 10, 10, 0.85) 100%);
  z-index: 2;
}
/* Main Container */
.page-container {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  padding-bottom: 5rem; /* Space for footer icons */
}

/* Breadcrumb */
.breadcrumb-container {
  position: fixed;
  top: 2rem;
  left: 2rem;
  z-index: 100;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  animation: fadeIn 1s ease;
}
.breadcrumb-item {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}
.breadcrumb-item:hover {
  color: white;
}
.breadcrumb-separator {
  margin: 0 0.5rem;
}
.breadcrumb-current {
  color: rgba(255, 255, 255, 0.4);
}

/* Logo & Slogan */
.logo-top-right {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 100;
  animation: fadeIn 1s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.2rem;
}
.logo-top-right img {
  max-width: 150px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
  transition: transform 0.3s ease;
}
.logo-slogan {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  white-space: nowrap;
}

/* Language Selection (Sağ Alt) */
.social-toggle {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 100;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.social-icons-container {
  position: fixed;
  bottom: 5.5rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.social-icons-container.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.social-icon-btn {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

/* Page Header */
.page-header {
  padding: 2rem;
  text-align: center;
  animation: fadeInDown 0.8s ease;
}
.page-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-top: 1rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.page-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.5rem;
}

/* Main Content Grid */
.main-content {
  max-width: 1600px;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 3rem;
  min-height: 600px;
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: fadeInLeft 0.8s ease 0.4s both;
}
.nav-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}
.nav-item:hover, .nav-item.active {
  transform: translateX(10px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.nav-icon {
  font-size: 2rem;
}
.nav-title {
  font-size: 1rem;
  font-weight: 600;
  color: white;
}
.satin-al-nav {
  margin-top: 1rem;
  background: rgba(192, 57, 43, 0.2);
  border-color: rgba(192, 57, 43, 0.4);
}
.satin-al-nav:hover, .satin-al-nav.active {
  background: rgba(192, 57, 43, 0.4);
  border-color: rgba(192, 57, 43, 0.6);
}

/* Content Area */
.content-area {
  position: relative;
  min-height: 600px;
  animation: fadeInRight 0.8s ease 0.4s both;
}
.content-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 3rem;
  backdrop-filter: blur(10px);
  max-height: 80vh;
  overflow-y: auto;
}
.content-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

/* INTRO SLIDE */
#intro-slide {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem;
}
.intro-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.intro-text-section {
  line-height: 1.8;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}
.intro-text-section p {
  margin-bottom: 1.5rem;
}
.intro-image-inline {
  float: right;
  max-width: 300px;
  margin-left: 2rem;
  margin-bottom: 1rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Nutrition Table */
.nutrition-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
}
.nutrition-table th, .nutrition-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.highlight-box {
  background: linear-gradient(135deg, #C0392B 0%, #E74C3C 100%);
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 1rem;
}

/* Benefit Grid & Cards */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.benefit-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.benefit-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-5px);
}
.benefit-card img {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
  border-radius: 10px;
}
.benefit-card h4 {
  color: #E74C3C;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.wiki-link {
  font-size: 1.2rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}
.wiki-link:hover {
  color: white;
}

/* FAQ Accordion */
.faq-accordion {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.faq-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  overflow: hidden;
}
.faq-question {
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}
.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}
.faq-item.active .faq-answer {
  padding: 1rem 1.5rem 1.5rem;
  max-height: 200px;
}

/* Footer Social Icons (Sol Alt) */
.footer-social-icons {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  display: flex;
  gap: 1rem;
  z-index: 100;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.8rem 1.2rem;
  border-radius: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.social-icon {
  font-size: 1.2rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.social-icon:hover {
  transform: scale(1.2);
}

.kaynakca-section {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.kaynakca-section h3 {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}
.kaynakca-list {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  list-style: none;
}
.kaynakca-list li {
  margin-bottom: 0.5rem;
}

/* Animations */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }

/* Responsive */
@media (max-width: 1200px) {
  .main-content { 
    grid-template-columns: 1fr; 
    gap: 2rem; 
    max-width: 900px;
  }
  .nav-menu {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .nav-item {
    flex: 1 1 200px;
    justify-content: center;
  }
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .breadcrumb-container { 
    position: relative;
    top: 0;
    left: 0;
    padding: 1rem;
    text-align: center;
  }
  .logo-top-right { 
    position: relative;
    top: 0;
    right: 0;
    align-items: center;
    padding: 1rem;
  }
  .logo-top-right img { max-width: 120px; }
  .page-title { font-size: 1.8rem; margin-top: 0.5rem; }
  
  .main-content { 
    padding: 1rem; 
    display: flex;
    flex-direction: column;
  }
  
  .nav-menu {
    order: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  
  .nav-item {
    padding: 0.8rem;
    flex-direction: column;
    text-align: center;
    gap: 0.3rem;
  }
  
  .nav-icon { font-size: 1.5rem; }
  .nav-title { font-size: 0.8rem; }
  
  .content-area {
    order: 2;
    margin-top: 1.5rem;
  }
  
  .content-slide { 
    padding: 1.2rem; 
    max-height: none; 
    overflow-y: visible;
    position: relative;
    opacity: 1;
    visibility: visible;
    display: none;
  }
  
  .content-slide.active {
    display: block;
  }
  
  .intro-image-inline { 
    float: none; 
    margin: 0 auto 1.5rem; 
    display: block; 
    max-width: 100%;
  }
  
  .nutrition-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  
  .benefit-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-social-icons { 
    position: relative;
    bottom: 0;
    left: 0;
    margin: 2rem auto;
    justify-content: center;
    width: fit-content;
  }
  
  .social-toggle {
    bottom: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .social-icons-container {
    bottom: 4.5rem;
    right: 1rem;
  }
}

@media (max-width: 480px) {
  .nav-menu {
    grid-template-columns: 1fr;
  }
}



.info-text {
  position: fixed;
  bottom: 2rem;
  right: 6rem;
  max-width: 250px;
  text-align: right;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  line-height: 1.5;
  z-index: 98;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  backdrop-filter: blur(5px);
}

@media (max-width: 768px) {
  .info-text {
    bottom: 8rem;
    right: 1.5rem;
    max-width: 200px;
    font-size: 0.75rem;
  }
}@media (max-width: 480px) {
  .nav-menu {
    grid-template-columns: 1fr;
  }
}



.info-text {
  position: fixed;
  bottom: 2rem;
  right: 6rem;
  max-width: 250px;
  text-align: right;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  line-height: 1.5;
  z-index: 98;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  backdrop-filter: blur(5px);
}

@media (max-width: 768px) {
  .info-text {
    bottom: 8rem;
    right: 1.5rem;
    max-width: 200px;
    font-size: 0.75rem;
  }
}
/* Satın Al Layout */
.satin-al-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  height: 70vh;
  padding: 2rem;
}

.product-image-link {
  flex: 0 0 45%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image {
  max-width: 100%;
  max-height: 60vh;
  object-fit: contain;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.5));
  transition: transform 0.3s ease;
}

.product-image:hover {
  transform: scale(1.05);
}

/* Scrolling Text Container */
.scrolling-text-container {
  flex: 0 0 50%;
  height: 70vh;
  overflow-y: auto;
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  backdrop-filter: blur(5px);
}

.scrolling-text-content {
  animation: scrollUp 60s linear infinite;
  animation-play-state: paused;
  padding-bottom: 100%;
}

.scrolling-text-content.paused {
  }

.scrolling-text-content h3 {
  font-size: 1.5rem;
  color: #E74C3C;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.scrolling-text-content h4 {
  font-size: 1.2rem;
  color: #E74C3C;
  margin: 2rem 0 1rem;
  font-weight: 600;
}

.scrolling-text-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
  text-align: justify;
}

.scrolling-text-content.animate {
  animation-play-state: running !important;
}


/* Custom Scrollbar for scrolling text */
.scrolling-text-container::-webkit-scrollbar {
  width: 8px;
}

.scrolling-text-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.scrolling-text-container::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

.scrolling-text-container::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

.scrolling-text-container {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) rgba(255, 255, 255, 0.05);
}

@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}

/* Mobile/Tablet Responsive for Scrolling Text */
@media (max-width: 1024px) {
  .satin-al-wrapper {
    flex-direction: column;
    height: auto;
    gap: 2rem;
  }
  
  .product-image-link,
  .scrolling-text-container {
    flex: 1 1 100%;
  }
  
  .scrolling-text-container {
    height: 50vh;
  }
}

@media (max-width: 768px) {
  .scrolling-text-container {
    height: 40vh;
    padding: 1.5rem;
  }
  
  .scrolling-text-content h3 {
    font-size: 1.2rem;
  }
  
  .scrolling-text-content h4 {
    font-size: 1rem;
  }
  
  .scrolling-text-content p {
    font-size: 0.9rem;
  }
}


/* SOURCE: morel.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  background: #0a0a0a;
  color: white;
}
/* Video Background */
.video-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: opacity 1s ease;
}
@media (max-width: 768px) {
  .video-bg {
    display: none;
  }
  .desktop-only {
    display: none !important;
  }
}
/* Gradient Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(20, 20, 20, 0.75) 50%, rgba(10, 10, 10, 0.85) 100%);
  z-index: 2;
}
/* Main Container */
.page-container {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  padding-bottom: 5rem; /* Space for footer icons */
}

/* Breadcrumb */
.breadcrumb-container {
  position: fixed;
  top: 2rem;
  left: 2rem;
  z-index: 100;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  animation: fadeIn 1s ease;
}
.breadcrumb-item {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}
.breadcrumb-item:hover {
  color: white;
}
.breadcrumb-separator {
  margin: 0 0.5rem;
}
.breadcrumb-current {
  color: rgba(255, 255, 255, 0.4);
}

/* Logo & Slogan */
.logo-top-right {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 100;
  animation: fadeIn 1s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.2rem;
}
.logo-top-right img {
  max-width: 150px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
  transition: transform 0.3s ease;
}
.logo-slogan {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  white-space: nowrap;
}

/* Language Selection (Sağ Alt) */
.social-toggle {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 100;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.social-icons-container {
  position: fixed;
  bottom: 5.5rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.social-icons-container.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.social-icon-btn {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

/* Page Header */
.page-header {
  padding: 2rem;
  text-align: center;
  animation: fadeInDown 0.8s ease;
}
.page-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-top: 1rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.page-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.5rem;
}

/* Main Content Grid */
.main-content {
  max-width: 1600px;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 3rem;
  min-height: 600px;
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: fadeInLeft 0.8s ease 0.4s both;
}
.nav-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}
.nav-item:hover, .nav-item.active {
  transform: translateX(10px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.nav-icon {
  font-size: 2rem;
}
.nav-title {
  font-size: 1rem;
  font-weight: 600;
  color: white;
}
.satin-al-nav {
  margin-top: 1rem;
  background: rgba(192, 57, 43, 0.2);
  border-color: rgba(192, 57, 43, 0.4);
}
.satin-al-nav:hover, .satin-al-nav.active {
  background: rgba(192, 57, 43, 0.4);
  border-color: rgba(192, 57, 43, 0.6);
}

/* Content Area */
.content-area {
  position: relative;
  min-height: 600px;
  animation: fadeInRight 0.8s ease 0.4s both;
}
.content-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 3rem;
  backdrop-filter: blur(10px);
  max-height: 80vh;
  overflow-y: auto;
}
.content-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

/* INTRO SLIDE */
#intro-slide {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem;
}
.intro-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.intro-text-section {
  line-height: 1.8;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}
.intro-text-section p {
  margin-bottom: 1.5rem;
}
.intro-image-inline {
  float: right;
  max-width: 300px;
  margin-left: 2rem;
  margin-bottom: 1rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Nutrition Table */
.nutrition-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
}
.nutrition-table th, .nutrition-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.highlight-box {
  background: linear-gradient(135deg, #C0392B 0%, #E74C3C 100%);
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 1rem;
}

/* Benefit Grid & Cards */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.benefit-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.benefit-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-5px);
}
.benefit-card img {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
  border-radius: 10px;
}
.benefit-card h4 {
  color: #E74C3C;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.wiki-link {
  font-size: 1.2rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}
.wiki-link:hover {
  color: white;
}

/* FAQ Accordion */
.faq-accordion {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.faq-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  overflow: hidden;
}
.faq-question {
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}
.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}
.faq-item.active .faq-answer {
  padding: 1rem 1.5rem 1.5rem;
  max-height: 200px;
}

/* Footer Social Icons (Sol Alt) */
.footer-social-icons {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  display: flex;
  gap: 1rem;
  z-index: 100;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.8rem 1.2rem;
  border-radius: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.social-icon {
  font-size: 1.2rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.social-icon:hover {
  transform: scale(1.2);
}

.kaynakca-section {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.kaynakca-section h3 {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}
.kaynakca-list {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  list-style: none;
}
.kaynakca-list li {
  margin-bottom: 0.5rem;
}

/* Animations */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }

/* Responsive */
@media (max-width: 1200px) {
  .main-content { 
    grid-template-columns: 1fr; 
    gap: 2rem; 
    max-width: 900px;
  }
  .nav-menu {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .nav-item {
    flex: 1 1 200px;
    justify-content: center;
  }
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .breadcrumb-container { 
    position: relative;
    top: 0;
    left: 0;
    padding: 1rem;
    text-align: center;
  }
  .logo-top-right { 
    position: relative;
    top: 0;
    right: 0;
    align-items: center;
    padding: 1rem;
  }
  .logo-top-right img { max-width: 120px; }
  .page-title { font-size: 1.8rem; margin-top: 0.5rem; }
  
  .main-content { 
    padding: 1rem; 
    display: flex;
    flex-direction: column;
  }
  
  .nav-menu {
    order: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  
  .nav-item {
    padding: 0.8rem;
    flex-direction: column;
    text-align: center;
    gap: 0.3rem;
  }
  
  .nav-icon { font-size: 1.5rem; }
  .nav-title { font-size: 0.8rem; }
  
  .content-area {
    order: 2;
    margin-top: 1.5rem;
  }
  
  .content-slide { 
    padding: 1.2rem; 
    max-height: none; 
    overflow-y: visible;
    position: relative;
    opacity: 1;
    visibility: visible;
    display: none;
  }
  
  .content-slide.active {
    display: block;
  }
  
  .intro-image-inline { 
    float: none; 
    margin: 0 auto 1.5rem; 
    display: block; 
    max-width: 100%;
  }
  
  .nutrition-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  
  .benefit-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-social-icons { 
    position: relative;
    bottom: 0;
    left: 0;
    margin: 2rem auto;
    justify-content: center;
    width: fit-content;
  }
  
  .social-toggle {
    bottom: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .social-icons-container {
    bottom: 4.5rem;
    right: 1rem;
  }
}

@media (max-width: 480px) {
  .nav-menu {
    grid-template-columns: 1fr;
  }
}



.info-text {
  position: fixed;
  bottom: 2rem;
  right: 6rem;
  max-width: 250px;
  text-align: right;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  line-height: 1.5;
  z-index: 98;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  backdrop-filter: blur(5px);
}

@media (max-width: 768px) {
  .info-text {
    bottom: 8rem;
    right: 1.5rem;
    max-width: 200px;
    font-size: 0.75rem;
  }
}
/* Satın Al Layout */
.satin-al-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  height: 70vh;
  padding: 2rem;
}

.product-image-link {
  flex: 0 0 45%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image {
  max-width: 100%;
  max-height: 60vh;
  object-fit: contain;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.5));
  transition: transform 0.3s ease;
}

.product-image:hover {
  transform: scale(1.05);
}

/* Scrolling Text Container */
.scrolling-text-container {
  flex: 0 0 50%;
  height: 70vh;
  overflow-y: auto;
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  backdrop-filter: blur(5px);
}

.scrolling-text-content {
  animation: scrollUp 60s linear infinite;
  animation-play-state: paused;
  padding-bottom: 100%;
}

.scrolling-text-content.paused {
  }

.scrolling-text-content h3 {
  font-size: 1.5rem;
  color: #E74C3C;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.scrolling-text-content h4 {
  font-size: 1.2rem;
  color: #E74C3C;
  margin: 2rem 0 1rem;
  font-weight: 600;
}

.scrolling-text-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
  text-align: justify;
}

.scrolling-text-content.animate {
  animation-play-state: running !important;
}


/* Custom Scrollbar for scrolling text */
.scrolling-text-container::-webkit-scrollbar {
  width: 8px;
}

.scrolling-text-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.scrolling-text-container::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

.scrolling-text-container::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

.scrolling-text-container {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) rgba(255, 255, 255, 0.05);
}

@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}

/* Mobile/Tablet Responsive for Scrolling Text */
@media (max-width: 1024px) {
  .satin-al-wrapper {
    flex-direction: column;
    height: auto;
    gap: 2rem;
  }
  
  .product-image-link,
  .scrolling-text-container {
    flex: 1 1 100%;
  }
  
  .scrolling-text-container {
    height: 50vh;
  }
}

@media (max-width: 768px) {
  .scrolling-text-container {
    height: 40vh;
    padding: 1.5rem;
  }
  
  .scrolling-text-content h3 {
    font-size: 1.2rem;
  }
  
  .scrolling-text-content h4 {
    font-size: 1rem;
  }
  
  .scrolling-text-content p {
    font-size: 0.9rem;
  }
}


/* SOURCE: porcini.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  background: #0a0a0a;
  color: white;
}
/* Video Background */
.video-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: opacity 1s ease;
}
@media (max-width: 768px) {
  .video-bg {
    display: none;
  }
  .desktop-only {
    display: none !important;
  }
}
/* Gradient Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(20, 20, 20, 0.75) 50%, rgba(10, 10, 10, 0.85) 100%);
  z-index: 2;
}
/* Main Container */
.page-container {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  padding-bottom: 5rem; /* Space for footer icons */
}

/* Breadcrumb */
.breadcrumb-container {
  position: fixed;
  top: 2rem;
  left: 2rem;
  z-index: 100;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  animation: fadeIn 1s ease;
}
.breadcrumb-item {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}
.breadcrumb-item:hover {
  color: white;
}
.breadcrumb-separator {
  margin: 0 0.5rem;
}
.breadcrumb-current {
  color: rgba(255, 255, 255, 0.4);
}

/* Logo & Slogan */
.logo-top-right {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 100;
  animation: fadeIn 1s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.2rem;
}
.logo-top-right img {
  max-width: 150px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
  transition: transform 0.3s ease;
}
.logo-slogan {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  white-space: nowrap;
}

/* Language Selection (Sağ Alt) */
.social-toggle {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 100;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.social-icons-container {
  position: fixed;
  bottom: 5.5rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.social-icons-container.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.social-icon-btn {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

/* Page Header */
.page-header {
  padding: 2rem;
  text-align: center;
  animation: fadeInDown 0.8s ease;
}
.page-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-top: 1rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.page-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.5rem;
}

/* Main Content Grid */
.main-content {
  max-width: 1600px;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 3rem;
  min-height: 600px;
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: fadeInLeft 0.8s ease 0.4s both;
}
.nav-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}
.nav-item:hover, .nav-item.active {
  transform: translateX(10px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.nav-icon {
  font-size: 2rem;
}
.nav-title {
  font-size: 1rem;
  font-weight: 600;
  color: white;
}
.satin-al-nav {
  margin-top: 1rem;
  background: rgba(192, 57, 43, 0.2);
  border-color: rgba(192, 57, 43, 0.4);
}
.satin-al-nav:hover, .satin-al-nav.active {
  background: rgba(192, 57, 43, 0.4);
  border-color: rgba(192, 57, 43, 0.6);
}

/* Content Area */
.content-area {
  position: relative;
  min-height: 600px;
  animation: fadeInRight 0.8s ease 0.4s both;
}
.content-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 3rem;
  backdrop-filter: blur(10px);
  max-height: 80vh;
  overflow-y: auto;
}
.content-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

/* INTRO SLIDE */
#intro-slide {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem;
}
.intro-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.intro-text-section {
  line-height: 1.8;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}
.intro-text-section p {
  margin-bottom: 1.5rem;
}
.intro-image-inline {
  float: right;
  max-width: 300px;
  margin-left: 2rem;
  margin-bottom: 1rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Nutrition Table */
.nutrition-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
}
.nutrition-table th, .nutrition-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.highlight-box {
  background: linear-gradient(135deg, #C0392B 0%, #E74C3C 100%);
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 1rem;
}

/* Benefit Grid & Cards */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.benefit-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.benefit-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-5px);
}
.benefit-card img {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
  border-radius: 10px;
}
.benefit-card h4 {
  color: #E74C3C;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.wiki-link {
  font-size: 1.2rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}
.wiki-link:hover {
  color: white;
}

/* FAQ Accordion */
.faq-accordion {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.faq-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  overflow: hidden;
}
.faq-question {
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}
.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}
.faq-item.active .faq-answer {
  padding: 1rem 1.5rem 1.5rem;
  max-height: 200px;
}

/* Footer Social Icons (Sol Alt) */
.footer-social-icons {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  display: flex;
  gap: 1rem;
  z-index: 100;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.8rem 1.2rem;
  border-radius: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.social-icon {
  font-size: 1.2rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.social-icon:hover {
  transform: scale(1.2);
}

.kaynakca-section {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.kaynakca-section h3 {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}
.kaynakca-list {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  list-style: none;
}
.kaynakca-list li {
  margin-bottom: 0.5rem;
}

/* Animations */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }

/* Responsive */
@media (max-width: 1200px) {
  .main-content { 
    grid-template-columns: 1fr; 
    gap: 2rem; 
    max-width: 900px;
  }
  .nav-menu {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .nav-item {
    flex: 1 1 200px;
    justify-content: center;
  }
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .breadcrumb-container { 
    position: relative;
    top: 0;
    left: 0;
    padding: 1rem;
    text-align: center;
  }
  .logo-top-right { 
    position: relative;
    top: 0;
    right: 0;
    align-items: center;
    padding: 1rem;
  }
  .logo-top-right img { max-width: 120px; }
  .page-title { font-size: 1.8rem; margin-top: 0.5rem; }
  
  .main-content { 
    padding: 1rem; 
    display: flex;
    flex-direction: column;
  }
  
  .nav-menu {
    order: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  
  .nav-item {
    padding: 0.8rem;
    flex-direction: column;
    text-align: center;
    gap: 0.3rem;
  }
  
  .nav-icon { font-size: 1.5rem; }
  .nav-title { font-size: 0.8rem; }
  
  .content-area {
    order: 2;
    margin-top: 1.5rem;
  }
  
  .content-slide { 
    padding: 1.2rem; 
    max-height: none; 
    overflow-y: visible;
    position: relative;
    opacity: 1;
    visibility: visible;
    display: none;
  }
  
  .content-slide.active {
    display: block;
  }
  
  .intro-image-inline { 
    float: none; 
    margin: 0 auto 1.5rem; 
    display: block; 
    max-width: 100%;
  }
  
  .nutrition-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  
  .benefit-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-social-icons { 
    position: relative;
    bottom: 0;
    left: 0;
    margin: 2rem auto;
    justify-content: center;
    width: fit-content;
  }
  
  .social-toggle {
    bottom: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .social-icons-container {
    bottom: 4.5rem;
    right: 1rem;
  }
}

@media (max-width: 480px) {
  .nav-menu {
    grid-template-columns: 1fr;
  }
}



.info-text {
  position: fixed;
  bottom: 2rem;
  right: 6rem;
  max-width: 250px;
  text-align: right;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  line-height: 1.5;
  z-index: 98;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  backdrop-filter: blur(5px);
}

@media (max-width: 768px) {
  .info-text {
    bottom: 8rem;
    right: 1.5rem;
    max-width: 200px;
    font-size: 0.75rem;
  }
}
/* Satın Al Layout */
.satin-al-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  height: 70vh;
  padding: 2rem;
}

.product-image-link {
  flex: 0 0 45%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image {
  max-width: 100%;
  max-height: 60vh;
  object-fit: contain;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.5));
  transition: transform 0.3s ease;
}

.product-image:hover {
  transform: scale(1.05);
}

.scrolling-text-container {
  flex: 0 0 50%;
  height: 70vh;
  overflow-y: auto;
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  backdrop-filter: blur(5px);
}

.scrolling-text-content {
  animation: scrollUp 60s linear infinite;
  animation-play-state: paused;
  padding-bottom: 100%;
}

.scrolling-text-content.paused {
  }

.scrolling-text-content h3 {
  font-size: 1.5rem;
  color: #E74C3C;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.scrolling-text-content h4 {
  font-size: 1.2rem;
  color: #E74C3C;
  margin: 2rem 0 1rem;
  font-weight: 600;
}

.scrolling-text-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
  text-align: justify;
}

.scrolling-text-content.animate {
  animation-play-state: running !important;
}


/* Custom Scrollbar for scrolling text */
.scrolling-text-container::-webkit-scrollbar {
  width: 8px;
}

.scrolling-text-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.scrolling-text-container::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

.scrolling-text-container::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

.scrolling-text-container {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) rgba(255, 255, 255, 0.05);
}

@keyframes scrollUp {
  0% { transform: translateY(0); }
  100% { transform: translateY(-100%); }
}

@media (max-width: 1024px) {
  .satin-al-wrapper {
    flex-direction: column;
    height: auto;
    gap: 2rem;
  }
  .product-image-link, .scrolling-text-container {
    flex: 1 1 100%;
  }
  .scrolling-text-container {
    height: 50vh;
  }
}

@media (max-width: 768px) {
  .scrolling-text-container {
    height: 40vh;
    padding: 1.5rem;
  }
  .scrolling-text-content h3 {
    font-size: 1.2rem;
  }
  .scrolling-text-content h4 {
    font-size: 1rem;
  }
  .scrolling-text-content p {
    font-size: 0.9rem;
  }
}


/* SOURCE: shiitake.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  background: #0a0a0a;
  color: white;
}
/* Video Background */
.video-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: opacity 1s ease;
}
@media (max-width: 768px) {
  .video-bg {
    display: none;
  }
  .desktop-only {
    display: none !important;
  }
}
/* Gradient Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(20, 20, 20, 0.75) 50%, rgba(10, 10, 10, 0.85) 100%);
  z-index: 2;
}
/* Main Container */
.page-container {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  padding-bottom: 5rem; /* Space for footer icons */
}

/* Breadcrumb */
.breadcrumb-container {
  position: fixed;
  top: 2rem;
  left: 2rem;
  z-index: 100;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  animation: fadeIn 1s ease;
}
.breadcrumb-item {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}
.breadcrumb-item:hover {
  color: white;
}
.breadcrumb-separator {
  margin: 0 0.5rem;
}
.breadcrumb-current {
  color: rgba(255, 255, 255, 0.4);
}

/* Logo & Slogan */
.logo-top-right {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 100;
  animation: fadeIn 1s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.2rem;
}
.logo-top-right img {
  max-width: 150px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
  transition: transform 0.3s ease;
}
.logo-slogan {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  white-space: nowrap;
}

/* Language Selection (Sağ Alt) */
.social-toggle {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 100;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.social-icons-container {
  position: fixed;
  bottom: 5.5rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.social-icons-container.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.social-icon-btn {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

/* Page Header */
.page-header {
  padding: 2rem;
  text-align: center;
  animation: fadeInDown 0.8s ease;
}
.page-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-top: 1rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.page-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.5rem;
}

/* Main Content Grid */
.main-content {
  max-width: 1600px;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 3rem;
  min-height: 600px;
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: fadeInLeft 0.8s ease 0.4s both;
}
.nav-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}
.nav-item:hover, .nav-item.active {
  transform: translateX(10px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.nav-icon {
  font-size: 2rem;
}
.nav-title {
  font-size: 1rem;
  font-weight: 600;
  color: white;
}
.satin-al-nav {
  margin-top: 1rem;
  background: rgba(192, 57, 43, 0.2);
  border-color: rgba(192, 57, 43, 0.4);
}
.satin-al-nav:hover, .satin-al-nav.active {
  background: rgba(192, 57, 43, 0.4);
  border-color: rgba(192, 57, 43, 0.6);
}

/* Content Area */
.content-area {
  position: relative;
  min-height: 600px;
  animation: fadeInRight 0.8s ease 0.4s both;
}
.content-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 3rem;
  backdrop-filter: blur(10px);
  max-height: 80vh;
  overflow-y: auto;
}
.content-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

/* INTRO SLIDE */
#intro-slide {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem;
}
.intro-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.intro-text-section {
  line-height: 1.8;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}
.intro-text-section p {
  margin-bottom: 1.5rem;
}
.intro-image-inline {
  float: right;
  max-width: 300px;
  margin-left: 2rem;
  margin-bottom: 1rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Nutrition Table */
.nutrition-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
}
.nutrition-table th, .nutrition-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.highlight-box {
  background: linear-gradient(135deg, #C0392B 0%, #E74C3C 100%);
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 1rem;
}

/* Benefit Grid & Cards */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.benefit-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.benefit-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-5px);
}
.benefit-card img {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
  border-radius: 10px;
}
.benefit-card h4 {
  color: #E74C3C;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.wiki-link {
  font-size: 1.2rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}
.wiki-link:hover {
  color: white;
}

/* FAQ Accordion */
.faq-accordion {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.faq-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  overflow: hidden;
}
.faq-question {
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}
.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}
.faq-item.active .faq-answer {
  padding: 1rem 1.5rem 1.5rem;
  max-height: 200px;
}

/* Footer Social Icons (Sol Alt) */
.footer-social-icons {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  display: flex;
  gap: 1rem;
  z-index: 100;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.8rem 1.2rem;
  border-radius: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.social-icon {
  font-size: 1.2rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.social-icon:hover {
  transform: scale(1.2);
}

.kaynakca-section {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.kaynakca-section h3 {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}
.kaynakca-list {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  list-style: none;
}
.kaynakca-list li {
  margin-bottom: 0.5rem;
}

/* Animations */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }

/* Responsive */
@media (max-width: 1200px) {
  .main-content { 
    grid-template-columns: 1fr; 
    gap: 2rem; 
    max-width: 900px;
  }
  .nav-menu {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .nav-item {
    flex: 1 1 200px;
    justify-content: center;
  }
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .breadcrumb-container { 
    position: relative;
    top: 0;
    left: 0;
    padding: 1rem;
    text-align: center;
  }
  .logo-top-right { 
    position: relative;
    top: 0;
    right: 0;
    align-items: center;
    padding: 1rem;
  }
  .logo-top-right img { max-width: 120px; }
  .page-title { font-size: 1.8rem; margin-top: 0.5rem; }
  
  .main-content { 
    padding: 1rem; 
    display: flex;
    flex-direction: column;
  }
  
  .nav-menu {
    order: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  
  .nav-item {
    padding: 0.8rem;
    flex-direction: column;
    text-align: center;
    gap: 0.3rem;
  }
  
  .nav-icon { font-size: 1.5rem; }
  .nav-title { font-size: 0.8rem; }
  
  .content-area {
    order: 2;
    margin-top: 1.5rem;
  }
  
  .content-slide { 
    padding: 1.2rem; 
    max-height: none; 
    overflow-y: visible;
    position: relative;
    opacity: 1;
    visibility: visible;
    display: none;
  }
  
  .content-slide.active {
    display: block;
  }
  
  .intro-image-inline { 
    float: none; 
    margin: 0 auto 1.5rem; 
    display: block; 
    max-width: 100%;
  }
  
  .nutrition-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  
  .benefit-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-social-icons { 
    position: relative;
    bottom: 0;
    left: 0;
    margin: 2rem auto;
    justify-content: center;
    width: fit-content;
  }
  
  .social-toggle {
    bottom: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .social-icons-container {
    bottom: 4.5rem;
    right: 1rem;
  }
}

@media (max-width: 480px) {
  .nav-menu {
    grid-template-columns: 1fr;
  }
}



.info-text {
  position: fixed;
  bottom: 2rem;
  right: 6rem;
  max-width: 250px;
  text-align: right;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  line-height: 1.5;
  z-index: 98;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  backdrop-filter: blur(5px);
}

@media (max-width: 768px) {
  .info-text {
    bottom: 8rem;
    right: 1.5rem;
    max-width: 200px;
    font-size: 0.75rem;
  }
}@media (max-width: 480px) {
  .nav-menu {
    grid-template-columns: 1fr;
  }
}



.info-text {
  position: fixed;
  bottom: 2rem;
  right: 6rem;
  max-width: 250px;
  text-align: right;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  line-height: 1.5;
  z-index: 98;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  backdrop-filter: blur(5px);
}

@media (max-width: 768px) {
  .info-text {
    bottom: 8rem;
    right: 1.5rem;
    max-width: 200px;
    font-size: 0.75rem;
  }
}
/* Satın Al Layout */
.satin-al-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  height: 70vh;
  padding: 2rem;
}

.product-image-link {
  flex: 0 0 45%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image {
  max-width: 100%;
  max-height: 60vh;
  object-fit: contain;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.5));
  transition: transform 0.3s ease;
}

.product-image:hover {
  transform: scale(1.05);
}

/* Scrolling Text Container */
.scrolling-text-container {
  flex: 0 0 50%;
  height: 70vh;
  overflow-y: auto;
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  backdrop-filter: blur(5px);
}

.scrolling-text-content {
  animation: scrollUp 60s linear infinite;
  animation-play-state: paused;
  padding-bottom: 100%;
}

.scrolling-text-content.paused {
  }

.scrolling-text-content h3 {
  font-size: 1.5rem;
  color: #E74C3C;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.scrolling-text-content h4 {
  font-size: 1.2rem;
  color: #E74C3C;
  margin: 2rem 0 1rem;
  font-weight: 600;
}

.scrolling-text-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
  text-align: justify;
}

.scrolling-text-content.animate {
  animation-play-state: running !important;
}


/* Custom Scrollbar for scrolling text */
.scrolling-text-container::-webkit-scrollbar {
  width: 8px;
}

.scrolling-text-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.scrolling-text-container::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

.scrolling-text-container::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

.scrolling-text-container {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) rgba(255, 255, 255, 0.05);
}

@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}

/* Mobile/Tablet Responsive for Scrolling Text */
@media (max-width: 1024px) {
  .satin-al-wrapper {
    flex-direction: column;
    height: auto;
    gap: 2rem;
  }
  
  .product-image-link,
  .scrolling-text-container {
    flex: 1 1 100%;
  }
  
  .scrolling-text-container {
    height: 50vh;
  }
}

@media (max-width: 768px) {
  .scrolling-text-container {
    height: 40vh;
    padding: 1.5rem;
  }
  
  .scrolling-text-content h3 {
    font-size: 1.2rem;
  }
  
  .scrolling-text-content h4 {
    font-size: 1rem;
  }
  
  .scrolling-text-content p {
    font-size: 0.9rem;
  }
}


/* SOURCE: truffle.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  background: #0a0a0a;
  color: white;
}
/* Video Background */
.video-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: opacity 1s ease;
}
@media (max-width: 768px) {
  .video-bg {
    display: none;
  }
  .desktop-only {
    display: none !important;
  }
}
/* Gradient Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(20, 20, 20, 0.75) 50%, rgba(10, 10, 10, 0.85) 100%);
  z-index: 2;
}
/* Main Container */
.page-container {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  padding-bottom: 5rem; /* Space for footer icons */
}

/* Breadcrumb */
.breadcrumb-container {
  position: fixed;
  top: 2rem;
  left: 2rem;
  z-index: 100;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  animation: fadeIn 1s ease;
}
.breadcrumb-item {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}
.breadcrumb-item:hover {
  color: white;
}
.breadcrumb-separator {
  margin: 0 0.5rem;
}
.breadcrumb-current {
  color: rgba(255, 255, 255, 0.4);
}

/* Logo & Slogan */
.logo-top-right {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 100;
  animation: fadeIn 1s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.2rem;
}
.logo-top-right img {
  max-width: 150px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
  transition: transform 0.3s ease;
}
.logo-slogan {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  white-space: nowrap;
}

/* Language Selection (Sağ Alt) */
.social-toggle {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 100;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.social-icons-container {
  position: fixed;
  bottom: 5.5rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.social-icons-container.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.social-icon-btn {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

/* Page Header */
.page-header {
  padding: 2rem;
  text-align: center;
  animation: fadeInDown 0.8s ease;
}
.page-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-top: 1rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.page-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.5rem;
}

/* Main Content Grid */
.main-content {
  max-width: 1600px;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 3rem;
  min-height: 600px;
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: fadeInLeft 0.8s ease 0.4s both;
}
.nav-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}
.nav-item:hover, .nav-item.active {
  transform: translateX(10px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.nav-icon {
  font-size: 2rem;
}
.nav-title {
  font-size: 1rem;
  font-weight: 600;
  color: white;
}
.satin-al-nav {
  margin-top: 1rem;
  background: rgba(192, 57, 43, 0.2);
  border-color: rgba(192, 57, 43, 0.4);
}
.satin-al-nav:hover, .satin-al-nav.active {
  background: rgba(192, 57, 43, 0.4);
  border-color: rgba(192, 57, 43, 0.6);
}

/* Content Area */
.content-area {
  position: relative;
  min-height: 600px;
  animation: fadeInRight 0.8s ease 0.4s both;
}
.content-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 3rem;
  backdrop-filter: blur(10px);
  max-height: 80vh;
  overflow-y: auto;
}
.content-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

/* INTRO SLIDE */
#intro-slide {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem;
}
.intro-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.intro-text-section {
  line-height: 1.8;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}
.intro-text-section p {
  margin-bottom: 1.5rem;
}
.intro-image-inline {
  float: right;
  max-width: 300px;
  margin-left: 2rem;
  margin-bottom: 1rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Nutrition Table */
.nutrition-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
}
.nutrition-table th, .nutrition-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.highlight-box {
  background: linear-gradient(135deg, #C0392B 0%, #E74C3C 100%);
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 1rem;
}

/* Benefit Grid & Cards */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.benefit-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.benefit-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-5px);
}
.benefit-card img {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
  border-radius: 10px;
}
.benefit-card h4 {
  color: #E74C3C;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.wiki-link {
  font-size: 1.2rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}
.wiki-link:hover {
  color: white;
}

/* FAQ Accordion */
.faq-accordion {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.faq-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  overflow: hidden;
}
.faq-question {
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}
.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}
.faq-item.active .faq-answer {
  padding: 1rem 1.5rem 1.5rem;
  max-height: 200px;
}

/* Footer Social Icons (Sol Alt) */
.footer-social-icons {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  display: flex;
  gap: 1rem;
  z-index: 100;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.8rem 1.2rem;
  border-radius: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.social-icon {
  font-size: 1.2rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.social-icon:hover {
  transform: scale(1.2);
}

.kaynakca-section {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.kaynakca-section h3 {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}
.kaynakca-list {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  list-style: none;
}
.kaynakca-list li {
  margin-bottom: 0.5rem;
}

/* Animations */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }

/* Responsive */
@media (max-width: 1200px) {
  .main-content { 
    grid-template-columns: 1fr; 
    gap: 2rem; 
    max-width: 900px;
  }
  .nav-menu {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .nav-item {
    flex: 1 1 200px;
    justify-content: center;
  }
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .breadcrumb-container { 
    position: relative;
    top: 0;
    left: 0;
    padding: 1rem;
    text-align: center;
  }
  .logo-top-right { 
    position: relative;
    top: 0;
    right: 0;
    align-items: center;
    padding: 1rem;
  }
  .logo-top-right img { max-width: 120px; }
  .page-title { font-size: 1.8rem; margin-top: 0.5rem; }
  
  .main-content { 
    padding: 1rem; 
    display: flex;
    flex-direction: column;
  }
  
  .nav-menu {
    order: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  
  .nav-item {
    padding: 0.8rem;
    flex-direction: column;
    text-align: center;
    gap: 0.3rem;
  }
  
  .nav-icon { font-size: 1.5rem; }
  .nav-title { font-size: 0.8rem; }
  
  .content-area {
    order: 2;
    margin-top: 1.5rem;
  }
  
  .content-slide { 
    padding: 1.2rem; 
    max-height: none; 
    overflow-y: visible;
    position: relative;
    opacity: 1;
    visibility: visible;
    display: none;
  }
  
  .content-slide.active {
    display: block;
  }
  
  .intro-image-inline { 
    float: none; 
    margin: 0 auto 1.5rem; 
    display: block; 
    max-width: 100%;
  }
  
  .nutrition-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  
  .benefit-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-social-icons { 
    position: relative;
    bottom: 0;
    left: 0;
    margin: 2rem auto;
    justify-content: center;
    width: fit-content;
  }
  
  .social-toggle {
    bottom: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .social-icons-container {
    bottom: 4.5rem;
    right: 1rem;
  }
}

@media (max-width: 480px) {
  .nav-menu {
    grid-template-columns: 1fr;
  }
}



.info-text {
  position: fixed;
  bottom: 2rem;
  right: 6rem;
  max-width: 250px;
  text-align: right;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  line-height: 1.5;
  z-index: 98;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  backdrop-filter: blur(5px);
}

@media (max-width: 768px) {
  .info-text {
    bottom: 8rem;
    right: 1.5rem;
    max-width: 200px;
    font-size: 0.75rem;
  }
}@media (max-width: 480px) {
  .nav-menu {
    grid-template-columns: 1fr;
  }
}



.info-text {
  position: fixed;
  bottom: 2rem;
  right: 6rem;
  max-width: 250px;
  text-align: right;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  line-height: 1.5;
  z-index: 98;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  backdrop-filter: blur(5px);
}

@media (max-width: 768px) {
  .info-text {
    bottom: 8rem;
    right: 1.5rem;
    max-width: 200px;
    font-size: 0.75rem;
  }
}
/* Satın Al Layout */
.satin-al-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  height: 70vh;
  padding: 2rem;
}

.product-image-link {
  flex: 0 0 45%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image {
  max-width: 100%;
  max-height: 60vh;
  object-fit: contain;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.5));
  transition: transform 0.3s ease;
}

.product-image:hover {
  transform: scale(1.05);
}

/* Scrolling Text Container */
.scrolling-text-container {
  flex: 0 0 50%;
  height: 70vh;
  overflow-y: auto;
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  backdrop-filter: blur(5px);
}

.scrolling-text-content {
  animation: scrollUp 60s linear infinite;
  animation-play-state: paused;
  padding-bottom: 100%;
}

.scrolling-text-content.paused {
  }

.scrolling-text-content h3 {
  font-size: 1.5rem;
  color: #E74C3C;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.scrolling-text-content h4 {
  font-size: 1.2rem;
  color: #E74C3C;
  margin: 2rem 0 1rem;
  font-weight: 600;
}

.scrolling-text-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
  text-align: justify;
}

.scrolling-text-content.animate {
  animation-play-state: running !important;
}


/* Custom Scrollbar for scrolling text */
.scrolling-text-container::-webkit-scrollbar {
  width: 8px;
}

.scrolling-text-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.scrolling-text-container::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

.scrolling-text-container::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

.scrolling-text-container {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) rgba(255, 255, 255, 0.05);
}

@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}

/* Mobile/Tablet Responsive for Scrolling Text */
@media (max-width: 1024px) {
  .satin-al-wrapper {
    flex-direction: column;
    height: auto;
    gap: 2rem;
  }
  
  .product-image-link,
  .scrolling-text-container {
    flex: 1 1 100%;
  }
  
  .scrolling-text-container {
    height: 50vh;
  }
}

@media (max-width: 768px) {
  .scrolling-text-container {
    height: 40vh;
    padding: 1.5rem;
  }
  
  .scrolling-text-content h3 {
    font-size: 1.2rem;
  }
  
  .scrolling-text-content h4 {
    font-size: 1rem;
  }
  
  .scrolling-text-content p {
    font-size: 0.9rem;
  }
}





