/* ================= CATEGORY BAR ================= */
.category-bar {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  position: relative;
  z-index: 10; /* 🔥 Header ve dropdown'un altında */
}

.category-list {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 14px 48px;
}

.category-item {
  position: static;
}

.category-item > a {
  font-weight: 600;
  font-size: 14px;
  color: #111;
  text-decoration: none;
  padding: 10px 0;
  display: inline-block;
  position: relative;
}

/* ================= ALT ÇİZGİ ================= */
.category-item > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #0d6efd;
  transition: width .25s ease;
}

.category-item:hover > a::after {
  width: 100%;
}

/* ================= MEGA MENU ================= */
.mega-menu {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  background: #fff;

  border-top: 1px solid #eee;
  box-shadow: 0 20px 45px rgba(0,0,0,.12);

  padding: 32px 0;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .25s ease;

  z-index: 20; /* 🔥 Header'ın altında */
}

/* HOVER */
.category-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ================= MEGA MENU İÇ ================= */
.mega-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;

  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 24px;
}

/* ================= KOLON ================= */
.mega-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mega-title {
  font-size: 14px;
  font-weight: 700;
  color: #111;
  margin-bottom: 6px;
}

.mega-link {
  font-size: 13.5px;
  color: #444;
  text-decoration: none;
  line-height: 1.5;
}

.mega-link:hover {
  color: #0d6efd;
  font-weight: 600;
}

/* ================= RESPONSIVE ================= */
@media (max-width:1200px) {
  .mega-inner {
    grid-template-columns: repeat(4,1fr);
  }
}

@media (max-width:992px) {
  .mega-menu {
    display: none !important;
  }
}

/* ================= FLOATING WHATSAPP ================= */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 24px;
  width: 56px;
  height: 56px;

  background: #25d366;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 10px 25px rgba(0,0,0,.25);
  z-index: 9999;

  transition: transform .25s ease, box-shadow .25s ease;
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 30px rgba(0,0,0,.35);
}

/* ================= MOBILE ================= */
@media(max-width:768px){
  .whatsapp-float {
    right: 16px;
    bottom: 18px;
    width: 52px;
    height: 52px;
  }

  .whatsapp-float img {
    width: 28px;
    height: 28px;
  }
}