   .navbar {
      background: white;
      font-weight: 500;
      position: fixed;
      top: 0;
      z-index: 1000;
      width: 100% ;
    }

.navbar.scrolled {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
    .navbar .nav-link { padding: 12px 18px; color: #000000; transition: all 0.3s ease; }
    .navbar .nav-link:hover, .navbar .nav-link:focus { color: #007bff; }
    .navbar-brand img { height: 70px; transition: transform 0.3s; }
    .navbar-brand img:hover { transform: scale(1.05); }
    @media (min-width: 992px) {
      .navbar .dropdown:hover .dropdown-menu { display: block; margin-top: 0; }
    }
      .navbar-collapse {
    max-height: 80vh;   
    overflow-y: auto;   
  }
    .navbar-toggler { border: none; }
    .navbar-toggler:focus { box-shadow: none; }
    
    .hero-video { height: 100vh; object-fit: cover; }

    /* Slider Yüksekliği */
    #collectionCarousel .carousel-inner img { height: 600px; object-fit: cover; }

    /* Slider Container */
    .carousel-caption-custom {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      width: 100%;
      color: white;
      text-shadow: 0 2px 5px rgba(0,0,0,0.5);
    }

    /* Başlık Üst Ortada */
    .carousel-title {
      font-size: 2rem;
      margin-left: auto;
      text-align: center;
      margin-top: -60px;
    }

    /* Buton Alt Ortada */
    .carousel-button {
      bottom: 30px;
      text-align: center;
    }

    .transparent-btn {
      background: rgba(255,255,255,0.2);
      border: 1px solid white;
      color: white;
      padding: 8px 20px;
      border-radius: 30px;
      text-decoration: none;
      transition: all 0.3s ease;
    }
    .transparent-btn:hover {
      background: rgba(255,255,255,0.4);
      color: #000;
    }

    .custom-indicators {
      display: flex;
      justify-content: center;
      gap: 10px;
    }
    .custom-indicators button {
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: #ccc;
      border: none;
      transition: background 0.3s ease;
    }
    .custom-indicators button.active,
    .custom-indicators button:hover { background: #21262c; }

    .store-card {
      background: #e6e5e5;
      border-radius: 12px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      transition: transform 0.3s;
    }
    .store-card:hover { transform: translateY(-5px); }
   footer {
  background-color: #000;
  color: #fff;
  padding: 30px 50px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.footer-column {
  flex: 1;
  min-width: 200px;
  margin: 10px;
}

.footer-column h4 {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: bold;
}

.footer-column a {
  display: block;
  color: #fff;
  text-decoration: none;
  margin: 5px 0;
  font-size: 14px;
}

.footer-column a:hover {
  text-decoration: underline;
}

.footer-column p {
  font-size: 14px;
  line-height: 1.5;
}
  .dropdown-card img {
    width: 50px;      
    height: auto;      
  }
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  footer {
    padding: 20px;
  }

  .footer-column {
    width: 100%;
    margin-bottom: 20px;
  }

  .footer-column h4 {
    font-size: 18px;
  }

  .footer-column a, .footer-column p {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .dropdown-card img {
    width: 100px;      
    height: auto;      
  }

  .dropdown-card h6 {
    font-size: 14px;   
  }
  .dropdown-card {
  display: flex;
  align-items: center;   
  gap: 10px;             
}

.dropdown-card h6 {
  margin: 0;
}

  .dropdown-menu.dropdown-cards {
    min-width: 200px;  
   
  }
}
@media (min-width: 992px) {
  .navbar-collapse {
    max-height: none;  
    overflow: visible; 
  }
}