
  * {
    box-sizing: border-box;
    margin: 0; padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  body {
    background: #f0f2f5;
    color: #222;
    line-height: 1.5;
  }
  header {
    background: #0F212C;
    color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }

  nav {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 0.3rem 0.7rem;
    border-radius: 4px;
    transition: background-color 0.3s;
  }
  nav a:hover {
    background: #0F212C;
  }
  .search-bar {
    max-width: 1200px;
    margin: 1rem auto;
    padding: 0 1rem;
  }
  .search-bar input[type="text"] {
    width: 100%;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    border-radius: 24px;
    border: 1px solid #ccc;
    outline: none;
    transition: border-color 0.3s;
  }
  .search-bar input[type="text"]:focus {
    border-color: #0F212C;
  }
  main {
    max-width: 1200px;
    margin: 0 auto 3rem auto;
    padding: 0 1rem;
    display: flex;
    gap: 2rem;
  }
  .feed {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .post-card {
    background: white;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    box-shadow: 0 2px 6px rgb(0 0 0 / 0.1);
  }
  .post-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
  }
  .avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
  }
  .user-info {
    font-weight: 600;
  }
  .post-content {
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.8rem;
  }
  .post-image {
    width: 100%;
    max-height: 280px;
    object-fit: cover;
    border-radius: 8px;
  }
  .post-footer {
    font-size: 0.9rem;
    color: #777;
  }
  aside.sidebar {
    flex: 1;
    background: white;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    height: fit-content;
    box-shadow: 0 2px 6px rgb(0 0 0 / 0.1);
  }
  aside.sidebar h3 {
    margin-bottom: 1rem;
    font-weight: 700;
    color: #0F212C;
  }
  .profile-card {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    cursor: pointer;
    padding: 0.4rem 0;
    border-bottom: 1px solid #eee;
  }
  .profile-card:last-child {
    border-bottom: none;
  }
  .profile-card img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
  }
  .profile-name {
    font-weight: 600;
    color: #222;
  }
  footer {
    background: #0F212C;
    color: white;
    text-align: center;
    padding: 1.2rem 1rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
  }

  /* Responsive */
  @media (max-width: 900px) {
    main {
      flex-direction: column;
    }
    aside.sidebar {
      order: -1;
      margin-bottom: 2rem;
    }
  }


.hero {
  width: 100%;
  height: 500px;
  overflow: hidden; /* img dışına taşmasın */
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* hafif gölge */
  position: relative; /* arama overlay için */
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* görsel kesilmeden kapsasın */
  display: block; /* alt boşluk kalmasın */
}

/* Arama overlay bölümü */
.search-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 900px;
  background: rgba(15, 33, 44, 0.55); /* koyu yarı saydam arka plan */
  padding: 2rem 1.5rem;
  border-radius: 12px;
  color: white;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  text-align: center;
  z-index: 10;
}

.search-overlay h2 {
  font-weight: 400;
  font-size: 1.7rem;
  margin-bottom: 1.5rem;
}

.search-overlay h2 strong {
  font-weight: 700;
}

.search-tabs {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  cursor: pointer;
}


.search-tab {
  background: transparent;
  border: none;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  padding-bottom: 0.3rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.search-tab.active,
.search-tab:hover {
  border-color: #ff3b3b;
}

.search-form {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.search-form select,
.search-form input[type="text"] {
  height: 44px;
  border-radius: 6px;
  border: none;
  padding: 0 1rem;
  font-size: 1rem;
  outline: none;
}

.search-form select {
  width: 140px;
  background: white;
  color: #0f212c;
  font-weight: 600;
}

.search-form input[type="text"] {
  flex: 1 1 auto;
  min-width: 280px;
  background: white;
  color: #0f212c;
}

.btn-search,
.btn-map {
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  padding: 0 1.5rem;
  height: 44px;
  transition: background-color 0.3s ease;
}

.btn-search {
  background-color: #ff3b3b;
  color: white;
}

.btn-search:hover {
  background-color: #cc2b2b;
}

.btn-map {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-map:hover {
  background-color: white;
  color: #0f212c;
}

/* Diğer orijinal kodlar burada */
/* ... */

/* Responsive */
@media (max-width: 768px) {
  .cards-container {
    flex-direction: column;
  }
  
  .search-form {
    flex-direction: column;
    gap: 1rem;
  }

  .search-form select,
  .search-form input[type="text"],
  .btn-search,
  .btn-map {
    width: 100%;
    max-width: none;
  }
  
  .search-tabs {
    flex-wrap: wrap;
    gap: 1rem;
  }
}







.intro-section {
  max-width: 900px;
  margin: 3rem auto 4rem auto;
  padding: 0 1rem;
  text-align: center;
  color: #0F212C; /* Tema rengi */
}

.intro-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.intro-section p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #444;
  max-width: 700px;
  margin: 0 auto;
}





.promo-section {
  max-width: 900px;
  margin: 0 auto 4rem auto;
  padding: 0 1rem;
  text-align: center;
  position: relative;
}

.promo-image-container {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 900px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.promo-image-container img {
  width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  max-height: 400px;
}

.promo-button {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: #0F212C; /* Tema rengi */
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.promo-button:hover {
  background-color: #0F212C;
}









.random-section {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 1.5rem;
  font-family: Arial, sans-serif;
  color: #0F212C;
}

.random-wrapper {
  display: flex;
  gap: 2rem;
}

/* Sol menü */
.random-left {
  flex: 0 0 160px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.random-btn {
  padding: 0.8rem 1rem;
  background: #f0f4f8;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  color: #0F212C;
  transition: background-color 0.3s ease;
}

.random-btn.active {
  background: #004d99;
  color: white;
}

.random-btn:hover:not(.active) {
  background: #cce0ff;
}

/* Sağ içerik */
.random-right {
  flex: 1;
  background: #f7f9fb;
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  min-height: 300px;
}

/* Kartlar */
.random-items {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  flex-grow: 1;
}

.random-item {
  background: white;
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  flex: 1 1 30%;      /* %45'ten %30'a düşürdük */
  max-width: 300px;   /* Maksimum genişlik sınırı ekledik */
}

/* Buton */
.view-all-btn {
  align-self: flex-end;  /* Sağa yasla */
  margin-top: 1rem;
  background-color: #004d99;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 24px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 77, 153, 0.4);
  transition: background-color 0.3s ease;
  user-select: none;
}

.view-all-btn:hover,
.view-all-btn:focus {
  background-color: #003366;
  outline: none;
}

/* Responsive */
@media (max-width: 768px) {
  .random-wrapper {
    flex-direction: column;
  }

  .random-left {
    flex-direction: row;
    justify-content: center;
    margin-bottom: 1rem;
    gap: 1rem;
  }

  .random-btn {
    flex: 1 1 auto;
    font-size: 1rem;
    padding: 0.6rem 0;
  }

  .random-items {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .random-item {
    flex: 0 0 80%;
    min-width: 280px;
  }

  .view-all-btn {
    align-self: center;
    width: 100%;
    margin-top: 1.5rem;
  }
}




  /* Arama butonları için küçük stil eklemeleri */
 .search-bar-buttons {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 0.5rem;
}
.search-type-btn {
  padding: 0.5rem 1rem;
  border-radius: 5px;
  border: 1px solid #0F212C;
  background-color: white;
  color: #0F212C;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-weight: 600;
  font-size: 0.9rem;
}
  .search-type-btn.active {
    background-color: #0F212C;
    color: white;
  }
  #searchSuggestions {
    border: 1px solid #ccc;
    max-height: 200px;
    overflow-y: auto;
    background: white;
    position: absolute;
    width: 100%;
    margin-top: 2px;
    padding: 0;
    list-style: none;
    display: none;
    border-radius: 0 0 5px 5px;
    z-index: 1000;
  }
  #searchSuggestions li {
    padding: 0.4rem 0.6rem;
    cursor: pointer;
  }
  #searchSuggestions li:hover {
    background-color: #f1f5f9;
  }
  /* Search bar container style for positioning suggestions */
.search-bar-container {
  position: relative;
  max-width: 1200px;   /* 320px’den 600px’e genişlettik */
  width: 100%;
  margin: 0 auto 2rem auto;
  box-sizing: border-box;
  padding: 0 1rem;    /* Kenarlardan boşluk */
}


  .logo {
  font-family: Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 700; /* kalın kısmın defaultu */
  color: #ffffff;
}

.logo .thin {
  font-weight: 300; /* ince yazı */
}

.logo-link {
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
}

.logo-link .thin {
  font-weight: 300;
}

/* İstersen hover efekti */
.logo-link:hover {
  color: #ffffff;
}

nav a {
  font-weight: 400; /* veya 300 */
  color: #ffffff;
  text-decoration: none;
  margin-left: 1rem;
  font-family: Arial, sans-serif;
  font-size: 1rem;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #ffffff;
}

  .hero-mobile {
    display: block;
    width: 100%;
    height: auto;
  }
  .hero-desktop {
    display: none;
    width: 100%;
    height: auto;
  }

  /* Desktop için geniş ekranlarda */
  @media (min-width: 768px) {
    .hero-mobile {
      display: none;
    }
    .hero-desktop {
      display: block;
    }
  }

  #searchInput {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border-radius: 5px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  font-size: 1rem;
  font-family: Arial, sans-serif;
  transition: border-color 0.3s ease;
}

/* Input focus efekti */
#searchInput:focus {
  outline: none;
  border-color: #0F212C;
  box-shadow: 0 0 5px rgba(15, 33, 44, 0.5);
}

/* Öneri listesinin stili */
#searchSuggestions {
  border: 1px solid #ccc;
  max-height: 200px;
  overflow-y: auto;
  background: white;
  position: absolute;
  width: 100%;
  margin-top: 2px;
  padding: 0;
  list-style: none;
  display: none;
  border-radius: 0 0 5px 5px;
  z-index: 1000;
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Öneri satırları */
#searchSuggestions li {
  padding: 0.4rem 0.6rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

/* Hover efekti */
#searchSuggestions li:hover {
  background-color: #f1f5f9;
}





  .random-container {
    display: flex;
    max-width: 1500px;
    margin: 2rem auto;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .random-left {
    flex: 1 1 0px;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }
  .random-btn {
    padding: 1rem 1rem;
    border: 1px solid #0F212C;
    background-color: white;
    color: #0F212C;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  .random-btn.active {
    background-color: #0F212C;
    color: white;
  }
  .random-right {
    flex: 3 1 600px;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 1rem;
    min-height: 150px;
    font-family: Arial, sans-serif;
    background-color: #0F212C;
  }
  .random-item {
    border-bottom: 1px solid #ddd;
    padding: 0.5rem 0;
  }
  .random-item:last-child {
    border-bottom: none;
  }

  .random-right {
  flex: 3 1 600px;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 1rem;
  min-height: 150px;
  font-family: Arial, sans-serif;

  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}
.random-item {
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 2px 6px rgb(0 0 0 / 0.1);
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}
.random-item:hover {
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.2);
}

/* İçerik örneği */
.random-item h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.0rem;
  color: #0F212C;
}
.random-item p {
  margin: 0;
  font-size: 0.9rem;
  color: #555;
}

.random-item p {
  margin: 0.2rem 0;
  font-size: 0.85rem;
  color: #333;
}
.random-item small {
  color: #666;
}




  .search-bar-buttons {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 0.5rem;
  }
  .search-type-btn {
    padding: 0.5rem 1rem;
    border-radius: 5px;
    border: 1px solid #0F212C;
    background-color: white;
    color: #0F212C;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
  }
  .search-type-btn.active {
    background-color: #0F212C;
    color: white;
  }

  #productSubtypes {
    display: none; /* Başlangıçta gizli */
  }

  
  .subtype-btn {
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
    border: 1px solid #0F212C;
    background-color: white;
    color: #0F212C;
    font-weight: 600;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  .subtype-btn:hover {
    background-color: #0F212C;
    color: white;
  }
  .subtype-btn.active {
    background-color: #0F212C;
    color: white;
  }

  #searchSuggestions {
    border: 1px solid #ccc;
    max-height: 200px;
    overflow-y: auto;
    background: white;
    position: absolute;
    width: 100%;
    margin-top: 2px;
    padding: 0;
    list-style: none;
    display: none;
    border-radius: 0 0 5px 5px;
    z-index: 1000;
    font-family: Arial, sans-serif;
    font-size: 0.95rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  #searchSuggestions li {
    padding: 0.4rem 0.6rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }
  #searchSuggestions li:hover {
    background-color: #f1f5f9;
  }



.stories-section {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
  font-family: Arial, sans-serif;
}

.stories-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #0F212C;
}

.stories-container {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 0.5rem;
  scroll-behavior: smooth;
  position: relative;

  max-width: 1200px;  /* Daha geniş */
  margin: 0 auto;     /* Ortala */
  width: 100%;        /* Tam genişlik */
}


.story-item {
  flex: 0 0 auto;
  width: 150px;
  text-align: center;
  cursor: pointer;
}

.story-item img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 3px solid #0F212C;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.story-item:hover img,
.story-item:focus img {
  border-color: #ff3b3b;
  outline: none;
}

.story-name {
  margin-top: 0.3rem;
  font-size: 0.85rem;
  color: #333;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}



.view-all-wrapper {
  text-align: right;
  margin: 2rem 0;
}

.view-all-btn {
  background-color: #0F212C; /* Ana renk */
  color: white;
  border: none;
  padding: 0.75rem 1.8rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  user-select: none;
  box-shadow: 0 4px 8px rgb(15 33 44 / 0.4);
}

.view-all-btn:hover,
.view-all-btn:focus {
  background-color: #254E8A; /* Hover rengi */
  outline: none;
}



#searchSuggestions {
  border: 1px solid #ccc;
  max-height: 200px;
  overflow-y: auto;
  background: white;
  position: absolute;
  width: 100%;
  margin-top: 2px;
  padding: 0;
  list-style: none;
  display: none;
  border-radius: 0 0 5px 5px;
  z-index: 1000;
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
#searchSuggestions li {
  padding: 0.4rem 0.6rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
#searchSuggestions li:hover {
  background-color: #f1f5f9;
}



#searchSuggestions {
  position: absolute;
  background: white;
  border: 1px solid #ccc;
  border-top: none;
  max-height: 200px;
  overflow-y: auto;
  width: 100%; /* input ile aynı genişlik */
  box-sizing: border-box;
  z-index: 9999;
  display: none; /* Başlangıçta gizli */
  margin-top: -1px; /* Alt sınırın inputa yapışması için */
  border-radius: 0 0 5px 5px;
  font-family: Arial, sans-serif;

  /* Eklenenler: */
  top: 100%;      /* inputun hemen altına yapışması için */
  left: 0;        /* sağa-sola yapışması için */
  color: #222;    /* okunabilir renk */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* hafif gölge */
}

#searchSuggestions li {
  padding: 0.4rem 0.6rem;
  cursor: pointer;
  border-bottom: 1px solid #eee; /* liste öğeleri arasında hafif çizgi */
  background-color: white;
  color: #222;
  transition: background-color 0.3s ease;
}

#searchSuggestions li:last-child {
  border-bottom: none; /* son elemanda çizgi olmasın */
}

#searchSuggestions li:hover {
  background-color: #0F212C;
  color: white;
}

.search-form {
  position: relative;
}




.agents-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 3rem 5rem; /* Dikeyde 3rem, yatayda 4rem boşluk */
  max-width: 1200px;
  margin: 2rem auto 0 auto;
  padding: 0 1rem;
  justify-items: center;
}


.agent-card {
  width: 225px; /* Genişlik artırıldı */
  background: #fff;
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(15, 33, 44, 0.12);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem; /* Aradaki boşluk artırıldı */
}


.agent-card:hover,
.agent-card:focus {
  box-shadow: 0 10px 25px rgba(15, 33, 44, 0.25);
  transform: translateY(-5px);
  outline: none;
}

.agent-photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #0F212C;
  transition: border-color 0.3s ease;
}

.agent-card:hover .agent-photo,
.agent-card:focus .agent-photo {
  border-color: #ff3b3b;
}

.agent-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: #0F212C;
  margin-top: 0.3rem;
}

.agent-title {
  font-size: 0.9rem;
  color: #555;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .agents-container {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    max-width: 100%;
    padding: 0 0.5rem;
  }
  .agent-card {
    width: 140px;
    padding: 0.8rem;
  }
  .agent-photo {
    width: 70px;
    height: 70px;
  }
  .agent-name {
    font-size: 1rem;
  }
  .agent-title {
    font-size: 0.85rem;
  }
}



.featured-agents-container {
  background-color: #f9fafb; /* Açık, nötr arka plan */
  padding: 4rem 1rem 3rem;    /* Üst 4rem, yanlar 1rem, alt 3rem */
  margin: 0 auto;
  box-sizing: border-box;
}

.featured-agents-container .container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;   /* Yanlardan küçük boşluk */
}

.featured-agents-container h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0F212C;
  text-align: center;
  margin-bottom: 2.5rem;
  letter-spacing: 0.03em;
}


.follow-btn {
  margin-top: auto; /* Kartın altına it */
  background-color: #0F212C;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 0.5rem 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.follow-btn:hover,
.follow-btn:focus {
  background-color: #ff3b3b;
  outline: none;
}



  .featured-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
  .btn-discover {
    background-color: #0F212C;
    color: #fff;
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
  }
  .btn-discover:hover {
    background-color: #1D3662;
  }


  .product-selects[hidden] { display: none !important; }
