 /* Konteyner görünümü */
 .consult-btn {
    position: fixed;
    bottom: -90px;                /* ilk başta gizli */
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;      /* Metni ortala */
    gap: 6px;                     /* Gap'i daha da küçült */
    padding: 6px 8px 6px 10px;   /* Padding'i minimum yap - sadece yazının etrafında */
    border-radius: 30px;          /* Border radius'u küçült */
    border: none;
    cursor: pointer;
    z-index: 11000;
    box-shadow: 0 8px 24px rgba(80,40,160,0.18);
    transition: all 420ms cubic-bezier(.2,.9,.2,1);
    opacity: 0;
    background: linear-gradient(90deg, #efe7ff 0%, #d6c8ff 100%);
    color: #111;
    font-weight: 500;
    font-size: 13px;              /* Font size'ı küçült */
    line-height: 1.2;
    min-height: 36px;              /* Min height'ı daha da küçült */
    width: fit-content;            /* Sadece içeriğe göre genişlik */
    max-width: calc(100vw - 40px); /* Ekran kenarlarına değmemesi için */
    pointer-events: none;          /* Görünmezken tıklanamaz */
  }
  
  /* Görünür hâle geldiğinde */
  .consult-btn.show {
    bottom: 22px;
    opacity: 1;
    pointer-events: auto;          /* Görünürken tıklanabilir */
  }
  
  
  /* Yazı hizalaması - taşmayı önlemek için */
  .consult-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 0;
    text-align: center;           /* Metni ortala */
  }
  
  /* Sağdaki çemberli ok */
  .arrow-circle {
    width: 32px;                /* Çemberi daha da küçült */
    height: 32px;
    min-width: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(180deg,#4b2cc5 0%, #3b1fa8 100%);
    box-shadow: 0 5px 14px rgba(75,44,197,0.35), inset 0 -2px 5px rgba(0,0,0,0.08);
    margin-right: -4px;         /* çemberin buton kenarına biraz taşması için */
  }
  
  /* SVG içinde beyaz ok zaten tanımlı; boyutu biraz ayarla */
  .arrow-circle svg {
    display: block;
    width: 12px;                 /* SVG'yi küçült */
    height: 12px;
  }
  
  /* Küçük dokunuşlar: mobilde genişliğin taşmasını engelle */
  @media (max-width: 420px) {
    .consult-btn { 
      padding-left: 8px; 
      padding-right: 4px; 
      font-size: 12px;
      min-height: 32px;
      gap: 5px;
      max-width: calc(100vw - 30px);
    }
    .consult-text { font-size: 12px; }
    .arrow-circle { 
      width: 28px; 
      height: 28px; 
      min-width: 28px; 
    }
    .arrow-circle svg {
      width: 10px;
      height: 10px;
    }
  }
  
  /* Mobilde görünürlüğü garanti altına al */
  @media (max-width: 767.98px) {
    .consult-btn {
      display: inline-flex !important; /* Bootstrap d-md-none ile çakışmaması için */
    }
  }
  
  /* Desktop'ta gizle */
  @media (min-width: 768px) {
    .consult-btn {
      display: none !important;
    }
  }
  
  /* Modal içerik tercihi (opsiyonel) */
  #consultModal .modal-content {
    border-radius: 0;
  }