.brand-link:hover .name {
  color: var(--primary-color, #007bff);
  transition: color .2s ease;
}

.menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 12px 0;
}
.menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.2s ease;
}
.menu a:hover,
.menu a.active {
  color: var(--accent, #ff6600);
}


.hero {
  position: relative;
  height: 70vh;
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 1s ease-in-out, opacity 1s ease;
  z-index: 0;
}
.hero-bg.fade { opacity: 0.4; }
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.75) 100%);
  z-index: 1;
}
.hero .hero-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 80px;
}
.hero-content {
  max-width: 50%;
  animation: fadeIn 1s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}


    .news .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* ðŸ“± responsive */
      gap: 22px;
    }
    .news .grid .card {
      background: #111;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 14px rgba(0,0,0,.3);
      transition: transform .3s ease, box-shadow .3s ease;
      display: flex;
      flex-direction: column;
    }
    .news .grid .card:hover {
      transform: translateY(-4px);
      box-shadow: 0 6px 18px rgba(0,0,0,.45);
    }
    .news .grid .card img {
      width: 100%;
      height: 340px; /* âœ… dik ve dengeli gÃ¶rÃ¼nÃ¼m */
      object-fit: cover;
      object-position: center;
      transition: transform .3s ease;
    }
    .news .grid .card:hover img {
      transform: scale(1.05);
    }
    .news .grid .card h3 {
      font-size: 1.05rem;
      margin: 10px 0 6px;
      font-weight: 600;
    }
    .news .grid .card p {
      color: var(--soft);
      font-size: .9rem;
      margin-bottom: 10px;
    }
    .news .grid .card div {
      padding: 12px 14px;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    @media (max-width: 1200px) {
      .news .grid .card img { height: 300px; }
    }
    @media (max-width: 768px) {
      .news .grid { grid-template-columns: repeat(2, 1fr); }
      .news .grid .card img { height: 240px; }
    }
    @media (max-width: 480px) {
      .news .grid { grid-template-columns: 1fr; }
    }
    
    
    
/* =============================== */
/*         ÜRÜN KATALOĞU CSS       */
/* =============================== */

.catalog-section {
  max-width: 1200px;
  margin: 40px auto 60px;
  padding: 0 15px;
  position: relative;
  padding-top: 80px;
}

/* =============================== */
/*         MODERN SEARCH BAR       */
/* =============================== */

.search-mini {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
}

.search-mini input {
  width: 100%;
  padding: 12px 44px 12px 16px;
  border-radius: 14px;
  border: 1px solid #333;
  background: #0e0e0e;
  color: #fff;
  font-size: 15px;
  transition: all .25s ease;
}

.search-mini input::placeholder { color: #aaa; }

.search-mini input:focus {
  border-color: #ff5a00;
  box-shadow: 0 0 10px rgba(255,90,0,0.3);
  outline: none;
}

.search-mini .icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 19px;
  color: #aaa;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 768px) {
  .search-mini {
    position: static;
    width: 100%;
    margin-bottom: 20px;
  }
}

/* =============================== */
/*       KATEGORİ BUTONLARI        */
/* =============================== */

.filter-bar {
  text-align: center;
  margin-bottom: 35px;
}
.filter-btn {
  display: inline-block;
  padding: 8px 16px;
  margin: 5px;
  border-radius: 10px;
  background: #222;
  color: #fff;
  cursor: pointer;
  transition: .2s;
  font-size: 14px;
}
.filter-btn:hover { background: #333; }
.filter-btn.active { background: #ff5a00 !important; }

/* =============================== */
/*            ÜRÜN GRID            */
/* =============================== */

.grid.catalog {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 26px;
}

.product-card {
  background: #0b0b0b;
  padding: 14px;
  border-radius: 15px;
  transition: .25s;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.45);
}

.img-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
}

.product-info h3 {
  font-size: 17px;
  color: #fff;
  margin-top: 12px;
}

.price {
  font-size: 20px;
  color: #f3c04f;
  font-weight: 700;
  margin-bottom: 10px;
}

.add-to-cart {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  background: #ff5a00;
  border: none;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
}
.add-to-cart:hover { background: #ff7a26; }

