.megamenu-bg {
  background: linear-gradient(
    to right,
    #ffffff calc((100% - 1320px) / 2 + 1320px * 0.7),
    #f9fafb calc((100% - 1320px) / 2 + 1320px * 0.7)
  );
}
.footer-bg {
  background: linear-gradient(
    to right,
    #ffffff calc((100% - 1320px) / 2 + 1320px * 0.7),
    #f9fafb calc((100% - 1320px) / 2 + 1320px * 0.7)
  );
}

/* Support Widget */
.detail-support-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

.detail-support-widget .support-icon {
  width: 100px;
  height: 100px;
  cursor: pointer;
}

.detail-support-widget .support-icon img {
  width: 100%;
  transition: transform 0.3s ease;
}

.detail-support-widget .support-bubble {
  position: absolute;
  bottom: 120px;
  right: 0;
  background: #ffffff;
  border-radius: 16px;
  padding: 15px 18px 26px;
  width: 280px;
  display: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  font-family: "Figtree", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
  font-size: 15px;
  line-height: 1.4;
  color: #105660;
  animation: fadeInUp 0.4s ease forwards;
}

/* Balonun altındaki ok */
.detail-support-widget .support-bubble::after {
  content: " ";
  position: absolute;
  bottom: -15px;
  right: 20px;
  border-width: 15px 12px 0;
  border-style: solid;
  border-color: #ffffff transparent transparent transparent;
}

/* Navi etiketi */
.detail-support-widget .support-bubble::before {
  content: "Navi sagt:";
  display: block;
  font-weight: bold;
  color: #F97316; /* accent rengi */
  margin-bottom: 8px;
}

/* Fade-in animasyon */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.detail-support-widget .support-bubble ul {
  margin: 0;
  padding: 10px 0 0;
  list-style: none;
}

.detail-support-widget .support-bubble li {
  margin-bottom: 10px;
}

.detail-support-widget .support-bubble li:last-child {
  margin-bottom: 0;
}

.detail-support-widget .support-bubble a {
  display: block;
  background: #E6F3F5;              /* açık teal ton */
  color: #105660;                   /* ana renk */
  font-weight: 400;
  text-decoration: none;
  padding: 10px 14px 6px;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  font-size: 14px;
}

.detail-support-widget .support-bubble a:hover {
  background: #105660;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.support-hint {
  position: absolute;
  bottom: 104px;
  right: 0;
  background: #105660;
  color: #fff;
  font-size: 13px;
  padding: 6px 32px 5px 15px;
  border-radius: 12px;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}

.path-green svg path {
    fill: #10A37F;
}
#img-radius .elementor-post__card .elementor-post__thumbnail,
#img-radius .elementor-post__card .elementor-post__thumbnail__link:after {
    border-radius: 8px !important;
}

.sidebar-categories ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-categories ul li {
    margin-bottom: 8px;
    position: relative;
}

.sidebar-categories ul li a {
    text-decoration: none;
    font-weight: 500;
    color: #0a3d47;
    background: #E6F3F5;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    padding: 8px 0 8px 14px;
    display: block;
    position: relative;
    transition: all 0.25s ease;
}

/* Sol çizgi */
.sidebar-categories ul li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: #008b9a;
    opacity: 0.8;
    transition: all 0.25s ease;
}

/* Hover */
.sidebar-categories ul li a:hover {
    color: #F97316;
    background: #dff0f2;
    padding-left: 18px; /* Hover'da hafif sağa hareket verir (çok premium görünür) */
}

/* Hover'da çizginin rengini de değiştir */
.sidebar-categories ul li a:hover::before {
    background: #F97316;
    opacity: 1;
}

/* Support Widget */