@charset "utf-8";
/* CSS Document */

.mobil-search-arama{width: 60px;height: 60px; display: flex; justify-content: center; align-items: center; left: 0; top: 0; position: absolute; }

    .ust-search-icon {color: #fff;
      font-size: 28px;
      cursor: pointer;
      transition: color 0.3s;
    }

    .ust-search-icon:hover {
      color: #f39c12;
    }

    .ust-search-mobil-box {
      position: absolute;
      top: 100%;
      right: 0;
      width: 100%;
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
      padding: 10px;
      margin-top: 10px;
      overflow: hidden;

      /* animasyon başlangıç */
      max-height: 0;
      opacity: 0;
      transition: all 0.4s ease;
      pointer-events: none; /* kapalıyken tıklanamaz */
    }

     .ust-search-mobil-box.active {display: flex;
      max-height: 80px; /* kutunun yüksekliği */
      opacity: 1;
      pointer-events: auto;
    }

    .ust-search-mobil-box form {
      display: flex;width: 100%;
      align-items: center;
    }

    .ust-search-mobil-box input {
      width: calc(100% - 36px);
      height: 36px;
      border: 1px solid #ccc;
      border-radius: 6px 0 0 6px;
      padding: 0 10px;
      outline: none;
      font-size: 14px;
    }

    .ust-search-mobil-box button {
      width: 36px;
      height: 36px;
      border: none;
      background: #f39c12;
      color: #fff;
      font-size: 16px;
      border-radius: 0 6px 6px 0;
      cursor: pointer;
      transition: background 0.3s;
    }

  .ust-search-mobil-box button:hover {
      background: #d35400;
    }